body, html {
  background: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  height: 100%;
}

/* CENTRALIZA TUDO */
.wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* CARD */
#formContent {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  text-align: center;
  padding-top: 20px;
}

/* LOGO */
#icon {
  width: 60%;
}

/* FOOTER */
#formFooter {
  padding: 15px;
  background: #f6f6f6;
  border-radius: 0 0 10px 10px;
}

/* INPUTS */
.input-group-text {
  background: #f6f6f6;
  border: 1px solid #ddd;
}

.form-control {
  border: 1px solid #ddd;
  background: #f6f6f6;
  font-size: 16px;
}

.form-control:focus {
  background: #fff;
  border-color: #5fbae9;
  box-shadow: 0 0 0 2px rgba(95,186,233,0.2);
}

/* BOTÃO */
.btn-login {
  background: #56baed;
  border: none;
  padding: 12px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(95,186,233,0.4);
  transition: 0.3s;
}

.btn-login:hover {
  background: #39ace7;
}

/* LINK */
.underlineHover {
  color: #56baed;
  text-decoration: none;
  font-size: 14px;
}

.underlineHover:hover {
  color: #2b7bbd;
}

/* TÍTULO */
.logo_title {
  font-size: 20px;
  font-weight: 600;
}
