@keyframes auth-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes auth-step {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes auth-shake {
  0%, 100% {
    transform: none;
  }
  15% {
    transform: translateX(-5px);
  }
  35% {
    transform: translateX(4px);
  }
  55% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(2px);
  }
}
body.auth-page {
  margin: 0;
  padding: 0;
  background: #F7F6F2;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #25384D;
  min-height: 100vh;
}

.auth-page a {
  color: #25384D;
}
.auth-page a:hover {
  color: #16283A;
}

.auth-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: #F7F6F2;
}

.auth-rainbow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.auth-rainbow span {
  flex: 1;
}
.auth-rainbow span:nth-child(1) {
  background: #F0C419;
}
.auth-rainbow span:nth-child(2) {
  background: #8CC63F;
}
.auth-rainbow span:nth-child(3) {
  background: #2BB3A3;
}
.auth-rainbow span:nth-child(4) {
  background: #3D8FD1;
}
.auth-rainbow span:nth-child(5) {
  background: #8E6BC8;
}
.auth-rainbow span:nth-child(6) {
  background: #E8547C;
}
.auth-rainbow span:nth-child(7) {
  background: #E8412C;
}

.auth-watermark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.auth-watermark img {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 420px;
  opacity: 0.06;
}

.auth-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 44px 68px 26px 78px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}
.auth-brand:hover {
  text-decoration: none;
  color: inherit;
}
.auth-brand img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.auth-brand span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #25384D;
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 34px 0;
}

.auth-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 520px);
  gap: 80px;
  align-items: center;
}

.auth-hero h1 {
  margin: 0 0 18px;
  font-size: 56px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #25384D;
  text-wrap: pretty;
}
.auth-hero__rule {
  display: block;
  width: 56px;
  height: 2px;
  background: #25384D;
  margin-bottom: 18px;
}
.auth-hero p {
  margin: 0 0 30px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #5A6874;
  max-width: 36ch;
  text-wrap: pretty;
}
.auth-hero p:empty {
  display: none;
  margin: 0;
}

.auth-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 38ch;
}
.auth-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #5A6874;
}
.auth-benefits li svg {
  flex: none;
  margin-top: 3px;
  color: #25384D;
}

.auth-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 520px;
}

.auth-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 11.5px;
  color: #8A8578;
}
.auth-footer a {
  color: #8A8578;
  text-decoration: none;
}
.auth-footer a:hover {
  color: #25384D;
}

.auth-page--compact .auth-hero {
  display: none;
}
.auth-page--compact .auth-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}
.auth-page--compact .auth-panel {
  max-width: 440px;
}
.auth-page--compact .auth-inner {
  padding: 28px 32px 20px 40px;
}
.auth-page--compact .auth-watermark {
  display: none;
}

@media (max-width: 900px) {
  .auth-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .auth-inner {
    padding: 28px 24px 20px 32px;
  }
  .auth-hero h1 {
    font-size: 40px;
  }
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.auth-field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #25384D;
  text-transform: uppercase;
}
.auth-field__error {
  font-size: 12.5px;
  color: #A33D28;
  font-weight: 500;
}
.auth-field__help {
  font-size: 12px;
  color: #8A8578;
}

.auth-input {
  height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #D6D2C9;
  box-shadow: none;
  font: inherit;
  font-size: 15px;
  color: #25384D;
  width: 100%;
  min-width: 0;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
  outline: none;
  appearance: none;
}
.auth-input::placeholder {
  color: #A9A79F;
}
.auth-input:focus {
  border-color: #25384D;
  box-shadow: 0 0 0 3px rgba(37, 56, 77, 0.12);
}
.auth-input.is-invalid, .has-error .auth-input, .has-danger .auth-input {
  background: #FDF4F2;
  border-color: #C2553A;
  box-shadow: 0 0 0 3px rgba(194, 85, 58, 0.16);
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 9px 0 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #D6D2C9;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
}
.auth-input-wrap:focus-within {
  border-color: #25384D;
  box-shadow: 0 0 0 3px rgba(37, 56, 77, 0.12);
}
.auth-input-wrap.is-invalid, .has-error .auth-input-wrap, .has-danger .auth-input-wrap {
  background: #FDF4F2;
  border-color: #C2553A;
  box-shadow: 0 0 0 3px rgba(194, 85, 58, 0.16);
}
.auth-input-wrap .auth-input {
  flex: 1;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.auth-input-wrap .auth-input:focus {
  border: 0;
  box-shadow: none;
}

.auth-eye {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border: 0;
  border-radius: 10px;
  background: none;
  color: #8A96A3;
  cursor: pointer;
  padding: 0;
}
.auth-eye:hover {
  background: #F1EFE9;
  color: #25384D;
}

.auth-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 14px;
  background: #FCEFEC;
  border: 1px solid #E39A8B;
  color: #A33D28;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.45;
  animation: auth-shake 0.38s ease-out;
}
.auth-alert svg {
  flex: none;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.auth-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  color: #5A6874;
  cursor: pointer;
  text-align: left;
}
.auth-check--block {
  font-size: 13px;
  line-height: 1.55;
  gap: 12px;
}
.auth-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.auth-check__box {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex: none;
  background: #fff;
  color: #fff;
  border: 1px solid #C9C5BB;
  transition: background 0.14s, border-color 0.14s;
}
.auth-check__box svg {
  opacity: 0;
  width: 12px;
  height: 12px;
}
input:checked + .auth-check__box, .auth-check.is-checked .auth-check__box {
  background: #25384D;
  border-color: #25384D;
}
input:checked + .auth-check__box svg, .auth-check.is-checked .auth-check__box svg {
  opacity: 1;
}
.auth-check.is-invalid .auth-check__box {
  border-color: #C2553A;
  box-shadow: 0 0 0 3px rgba(194, 85, 58, 0.16);
}
.auth-check a {
  color: #25384D;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-link {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  color: #25384D;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.auth-link:hover {
  color: #16283A;
}

.auth-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  height: 52px !important;
  min-height: 52px !important;
  max-height: none !important;
  padding: 0 28px !important;
  flex: 1;
  border: 0 !important;
  border-radius: 999px !important;
  background: #16283A !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #FFFEFE !important;
  font-family: "Poppins", system-ui, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em;
  line-height: 1 !important;
  text-transform: none !important;
  cursor: pointer;
  transition: background 0.16s;
  text-decoration: none !important;
  width: 100%;
  box-sizing: border-box;
}
.auth-btn:hover, .auth-btn:focus, .auth-btn:active {
  background: #16283A !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #FFFEFE !important;
  text-decoration: none !important;
}
.auth-btn:focus {
  outline: 2px solid #25384D;
  outline-offset: 3px;
}
.auth-btn:disabled, .auth-btn.is-busy {
  background: #41556B !important;
  cursor: progress;
}
.auth-btn--secondary {
  flex: none;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  border: 1px solid #D6D2C9 !important;
  background: #fff !important;
  color: #5A6874 !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  width: auto;
}
.auth-btn--secondary:hover {
  background: #F1EFE9 !important;
  color: #25384D !important;
}
.auth-btn--ghost {
  height: 46px !important;
  min-height: 46px !important;
  background: none !important;
  color: #5A6874 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.auth-btn--ghost:hover {
  background: none !important;
  color: #25384D !important;
}

.auth-btn-row {
  display: flex;
  gap: 12px;
  width: 100%;
}
.auth-btn-row .auth-btn:not(.auth-btn--secondary) {
  flex: 1;
}

.auth-hidden,
.auth-btn.auth-hidden,
button.auth-hidden {
  display: none !important;
}

.auth-divider {
  padding-top: 16px;
  border-top: 1px solid #E2DED5;
  font-size: 13.5px;
  color: #5A6874;
}
.auth-divider a,
.auth-divider .auth-link {
  font-weight: 600;
}

.auth-captcha-note {
  font-size: 11.5px;
  color: #8A8578;
  text-align: center;
}
.auth-captcha-note a {
  color: #8A8578;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-civility {
  display: flex;
  gap: 6px;
  position: relative;
}
.auth-civility input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.auth-civility label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  color: #8A8578;
  border: 1px solid #D6D2C9;
  transition: all 0.14s;
  margin: 0;
}
.auth-civility input:checked + label {
  background: #25384D;
  color: #fff;
  border-color: #25384D;
  font-weight: 600;
}
.auth-civility input:focus + label {
  outline: 2px solid #25384D;
  outline-offset: 2px;
}

.auth-identity-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 12px;
  align-items: end;
}
@media (max-width: 560px) {
  .auth-identity-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .auth-identity-row .auth-civility {
    justify-content: flex-start;
  }
}

.auth-pwd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .auth-pwd-row {
    grid-template-columns: 1fr;
  }
}

.auth-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth-stepper__dot {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 700;
  background: #fff;
  color: #A9A79F;
  border: 1px solid #D6D2C9;
  transition: all 0.2s;
}
.auth-stepper__dot.is-active, .auth-stepper__dot.is-done {
  background: #25384D;
  color: #fff;
  border-color: #25384D;
}
.auth-stepper__label {
  font-size: 12.5px;
  font-weight: 600;
  color: #A9A79F;
  white-space: nowrap;
}
.auth-stepper__label.is-active {
  color: #25384D;
}
.auth-stepper__bar {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: #E2DED5;
  overflow: hidden;
}
.auth-stepper__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #25384D;
  transition: width 0.3s ease;
}
.auth-stepper.is-step-2 .auth-stepper__bar span {
  width: 100%;
}

.auth-step {
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: auth-step 0.22s ease-out;
}
.auth-step.is-active {
  display: flex;
}

.auth-register-form {
  gap: 16px;
}

.auth-pwd-meter {
  display: flex;
  align-items: center;
  gap: 11px;
}
.auth-pwd-meter__bars {
  display: flex;
  gap: 4px;
  height: 4px;
  width: 100px;
  flex: none;
}
.auth-pwd-meter__bars span {
  flex: 1;
  border-radius: 999px;
  background: #E2DED5;
  transition: background 0.2s;
}
.auth-pwd-meter__bars span.is-on {
  background: #C2553A;
}
.auth-pwd-meter__bars span.is-on.is-mid {
  background: #D9A521;
}
.auth-pwd-meter__bars span.is-on.is-strong {
  background: #4E9E6A;
}
.auth-pwd-meter__hint {
  font-size: 12px;
  color: #8A8578;
}

.auth-legal {
  font-size: 14px;
  line-height: 1.65;
  color: #5A6874;
}
.auth-legal h1, .auth-legal h2, .auth-legal h3, .auth-legal h4 {
  font-family: Helvetica, Arial, sans-serif;
  color: #25384D;
  margin: 1.2em 0 0.5em;
}
.auth-legal p {
  margin: 0 0 0.85em;
}
.auth-legal a {
  color: #25384D;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-done {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: auth-in 0.24s ease-out;
}
.auth-done__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: none;
  background: #fff;
  color: #25384D;
  border: 1px solid #D6D2C9;
}
.auth-done p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5A6874;
  max-width: 46ch;
  text-wrap: pretty;
}
.auth-done__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.auth-snack {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  background: #25384D;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 14px 34px -12px rgba(8, 14, 26, 0.55);
  animation: auth-in 0.22s ease-out;
  z-index: 50;
}

.auth-panel .alert {
  border-radius: 14px;
  font-size: 13.5px;
  padding: 12px 15px;
}
.auth-panel .form-group,
.auth-panel .bmd-form-group {
  margin-bottom: 16px;
  padding-top: 0 !important;
}
.auth-panel label,
.auth-panel .bmd-label-floating,
.auth-panel label.bmd-label-floating {
  position: static !important;
  display: block;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  color: #25384D !important;
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.auth-panel .form-control,
.auth-panel input.form-control,
.auth-panel textarea.form-control,
.auth-panel select.form-control {
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 16px !important;
  border-radius: 14px !important;
  background: #fff !important;
  background-image: none !important;
  border: 1px solid #D6D2C9 !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-family: "Poppins", system-ui, sans-serif !important;
  color: #25384D !important;
  line-height: 1.4 !important;
}
.auth-panel .form-control:focus,
.auth-panel input.form-control:focus,
.auth-panel textarea.form-control:focus,
.auth-panel select.form-control:focus {
  border-color: #25384D !important;
  box-shadow: 0 0 0 3px rgba(37, 56, 77, 0.12) !important;
  outline: none !important;
}
.auth-panel .form-control::placeholder,
.auth-panel input.form-control::placeholder,
.auth-panel textarea.form-control::placeholder,
.auth-panel select.form-control::placeholder {
  color: #A9A79F !important;
}
.auth-panel textarea.form-control {
  height: auto !important;
  min-height: 120px !important;
  padding: 14px 16px !important;
}
.auth-panel .has-danger .form-control,
.auth-panel .has-error .form-control {
  background: #FDF4F2 !important;
  border-color: #C2553A !important;
}
.auth-panel .btn.btn-primary,
.auth-panel .btn-primary,
.auth-panel .btn-form {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  height: 52px !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  background: #16283A !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #FFFEFE !important;
  font-family: "Poppins", system-ui, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 0 28px !important;
  width: 100%;
  margin-top: 8px;
  line-height: 1 !important;
}
.auth-panel .btn.btn-primary:hover, .auth-panel .btn.btn-primary:focus, .auth-panel .btn.btn-primary:active,
.auth-panel .btn-primary:hover,
.auth-panel .btn-primary:focus,
.auth-panel .btn-primary:active,
.auth-panel .btn-form:hover,
.auth-panel .btn-form:focus,
.auth-panel .btn-form:active {
  background: #16283A !important;
  box-shadow: none !important;
  color: #FFFEFE !important;
}
.auth-panel .btn.btn-primary:disabled,
.auth-panel .btn-primary:disabled,
.auth-panel .btn-form:disabled {
  background: #41556B !important;
}
.auth-panel .form-check,
.auth-panel .form-check-inline,
.auth-panel .cgu {
  margin: 12px 0 !important;
}
.auth-panel .form-check-label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px !important;
  line-height: 1.55;
  color: #5A6874 !important;
  cursor: pointer;
}
.auth-panel .form-check-input {
  position: static !important;
  opacity: 1 !important;
  width: 19px !important;
  height: 19px !important;
  margin: 1px 0 0 !important;
  flex: none;
  accent-color: #25384D;
  cursor: pointer;
}
.auth-panel .form-check-sign {
  display: none !important;
}
.auth-panel .messageError,
.auth-panel .invalid-feedback,
.auth-panel ul.list-unstyled li {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: #A33D28;
  font-weight: 500;
}
.auth-panel .help-message,
.auth-panel .form-text,
.auth-panel small {
  font-size: 12px;
  color: #8A8578;
}

.auth-page .full-background {
  background: transparent !important;
  min-height: 0;
  width: auto;
}
.auth-page .bloc-centered {
  display: block;
  width: 100%;
}
.auth-page .card.register {
  position: relative;
  background: transparent;
  box-shadow: none;
  margin: 0;
  width: 100% !important;
  max-width: 100%;
  color: inherit;
  border: 0;
  border-radius: 0;
}
.auth-page .card.register .register-header {
  display: none;
}
.auth-page .card.register .register-body {
  padding: 0;
}
.auth-page .card.register .register-body .intro {
  border-right: 0;
  margin-bottom: 24px;
}
.auth-page .card.register .register-body .intro h2 {
  display: none;
}
.auth-page .card.register .register-body .intro .intro-description {
  display: none;
}
.auth-page .card.register .register-body .intro .h5.off-mobile {
  display: none;
}
.auth-page .card.register .register-body .login-intro {
  padding: 0;
  text-align: left !important;
}
.auth-page .card.register .register-body .login-intro h2 {
  display: none;
}
.auth-page .card.register .register-body .form {
  margin: 0;
  padding: 0;
}
.auth-page .card.register .register-body .form-group {
  margin-bottom: 16px;
}
.auth-page .card.register .register-body .bmd-form-group {
  padding-top: 0;
}
.auth-page .card.register .register-body label.bmd-label-floating,
.auth-page .card.register .register-body .bmd-label-floating {
  position: static !important;
  display: block;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #25384D !important;
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  opacity: 1 !important;
}
.auth-page .card.register .register-body .form-control {
  height: 50px !important;
  padding: 0 16px !important;
  border-radius: 14px !important;
  background: #fff !important;
  border: 1px solid #D6D2C9 !important;
  box-shadow: none !important;
  font-size: 15px !important;
  color: #25384D !important;
  background-image: none !important;
}
.auth-page .card.register .register-body .form-control:focus {
  border-color: #25384D !important;
  box-shadow: 0 0 0 3px rgba(37, 56, 77, 0.12) !important;
}
.auth-page .card.register .register-body .has-danger .form-control,
.auth-page .card.register .register-body .has-error .form-control {
  background: #FDF4F2 !important;
  border-color: #C2553A !important;
}
.auth-page .card.register .register-body .btn.btn-primary,
.auth-page .card.register .register-body .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  border-radius: 999px !important;
  background: #16283A !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #FFFEFE !important;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  text-transform: none !important;
  letter-spacing: normal;
  padding: 0 28px;
  width: 100%;
  margin-top: 8px;
}
.auth-page .card.register .register-body .btn.btn-primary:hover, .auth-page .card.register .register-body .btn.btn-primary:focus, .auth-page .card.register .register-body .btn.btn-primary:active,
.auth-page .card.register .register-body .btn-primary:hover,
.auth-page .card.register .register-body .btn-primary:focus,
.auth-page .card.register .register-body .btn-primary:active {
  background: #16283A !important;
  box-shadow: none !important;
}
.auth-page .card.register .register-body .btn.btn-primary:disabled,
.auth-page .card.register .register-body .btn-primary:disabled {
  background: #41556B !important;
}
.auth-page .card.register .register-body .form-check-label,
.auth-page .card.register .register-body .form-check-inline {
  font-size: 13.5px;
  color: #5A6874;
}
.auth-page .card.register .register-body .messageError {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: #A33D28;
  font-weight: 500;
}
.auth-page .card.register .register-body .messageError .material-icons {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 4px;
}
.auth-page .card.register .register-body .hide-show-wrapper {
  position: relative;
}
.auth-page .card.register .register-body .hide-show-wrapper .pwdDispToggler {
  position: absolute;
  right: 8px;
  bottom: 9px;
  color: #8A96A3;
  cursor: pointer;
}
.auth-page .card.register .register-body .hide-show-wrapper .pwdDispToggler.show {
  color: #25384D;
}
.auth-page .card.register .register-footer {
  display: none;
}
.auth-page .counter-wrapper {
  margin: 12px 0;
}
.auth-page .text-success {
  color: #4E9E6A !important;
}
