.align-center {
  display: flex;
  align-items: center;
}

.auth-page {
  height: 100vh;
}

.auth-page .auth-estrutura {
  display: flex;
  height: 100vh;
  align-items: center;
  width: 100%;
}

.auth-page .auth-card {
  padding-right: 65px;
}

.auth-page .auth-card.recuperar-senha,
.auth-page .auth-card.campoNovaSenha {
    padding-left: 65px;
    padding-right: 0px;
}

.auth-page .auth-header {
  text-align: center;
}

.auth-page .auth-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #152147;
  letter-spacing: 0.08px;
  margin-bottom: 20px;
}

.auth-page .auth-header p {
  font-size: 14px;
  color: #555;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.14px;
  margin-bottom: 15px;
}

.auth-page .auth-form label {
  color: #0C1230;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.08px;
  font-weight: 400;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  margin-top: 25px;
  margin-bottom: 12px;
}

.auth-page .auth-form input {
  padding: 22px 16px;
  border-radius: 12px;
  border: 1px solid #555;
  font-size: 16px;
}

.auth-page .auth-form input::placeholder {
  color: "#909090";
  letter-spacing: 0.16px;
}

.auth-page .auth-form .password-wrapper {
  position: relative;
}

.auth-page .auth-form .toggle-password {
  position: absolute;
  right: 15px;
  top: 14px;
  cursor: pointer;
}

.auth-page .auth-form .toggle-password img {
  width: 20px;
  opacity: 0.6;
}

.auth-page .auth-form .toggle-password:hover img {
  opacity: 1;
}

.auth-page .auth-form a {
  color: #1C2953;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.36px;
  float: inline-end;
  margin-bottom: 40px;
}

.auth-page .auth-form input[type="submit"] {
  padding: 12px 16px;
  border-radius: 100px;
  background: #4DB84F;
  border: none;
  box-shadow: 0 4px 4px 0 #83CE85;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.2px;
  font-weight: 500;
  transition: letter-spacing 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.auth-page .auth-form input[type="submit"]:hover {
  letter-spacing: 2px;
  transform: translateY(-1px);
}

.auth-card .ajuda-divisor {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 34px;
  color: #1C2953;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.014px;
}

.auth-card .ajuda-divisor::before,
.auth-card .ajuda-divisor::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #1C2953;
}

.auth-card .ajuda-divisor span {
  padding: 0 12px;
  white-space: nowrap;
}

.auth-card h5 {
  color: var(--Azul-900, #0C1230);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.14px;
}

.auth-card h6 {
  color: var(--Neutro-600, #686868);
  font-size: 12px;
  letter-spacing: 0.36px;
  margin-bottom: 46px;
}

.auth-right {
  text-align: end;
}

.auth-left {
  text-align: start;
}

.error {
  display: none;
  background: #FCEBEB;
  color: #B00B27;
  padding: 10px;
  text-align: center;
  position: relative;
}

.error.error-active {
  display: block;
}

.error img {
  position: absolute;
  left: 10px;
}

.form-group.error-active input {
  border: 1px solid #B00B27;
  box-shadow: 0 17px 7.2px 0 #FCEBEB;
}
.form-group > span {
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.36px;
    color: #686868;
    padding-bottom: 33px;
    display: block;
    margin-bottom: -2px;
}
@media (max-width: 1024px) {
    .auth-page .auth-card {
        padding-right: 0px;
    }

        .auth-page .auth-card.recuperar-senha,
        .auth-page .auth-card.campoNovaSenha {
            padding-left: 0px;
            padding-right: 0px;
        }
}

@media (max-width: 992px) {
  .auth-page .auth-estrutura {
    justify-content: center;
    margin: 0px;
  }
}
