:root {
  --sat: env(safe-area-inset-top);
  --sar: env(safe-area-inset-right);
  --sab: env(safe-area-inset-bottom);
  --sal: env(safe-area-inset-left);
  --modal-animation-time: 0.6s;
}

:root {
  --color-primary: #163888;
  --color-secondary: #39C881;
  --color-neutral-black: #1F1D37;
  --color-neutral-grey1: #565c63;
  --color-neutral-grey2: #858494;
  --color-neutral-grey3: #CCCCCC;
  --color-neutral-white: #FFFFFF;
  --color-red: #ef4141;
  --color-green: #00B462;
  --color-warning: #e7b719;
  --color-blue: #4786ff;
}

.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}
.authentication-wrapper .authentication-inner {
  width: 100%;
}
.authentication-wrapper .authentication-inner .authentication-column {
  display: flex;
  align-items: center;
}
.authentication-wrapper .authentication-inner .authentication-column .logo-image {
  margin-bottom: 16px;
}
.authentication-wrapper .authentication-inner .authentication-column .logo-image img {
  height: 35px;
}
.authentication-wrapper .authentication-inner .authentication-column p {
  font-size: 0.9375rem;
  color: #828393;
}
.authentication-wrapper .authentication-inner .authentication-column #formAuthentication {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.authentication-wrapper.authentication-basic {
  align-items: center;
  justify-content: center;
}
.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 450px;
}
.authentication-wrapper .auth-cover-illustration {
  z-index: 1;
  max-inline-size: 38rem;
}
.authentication-wrapper .authentication-image {
  z-index: -1;
  inline-size: 100%;
  inset-block-end: 7%;
  position: absolute;
  inset-inline-start: 0;
}
.authentication-wrapper.authentication-cover {
  align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
  min-height: 100vh;
  position: relative;
}
.authentication-wrapper.authentication-cover .authentication-image {
  inline-size: 70%;
}
.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 150%;
}

html:not([dir=rtl]) .authentication-wrapper.authentication-cover .authentication-image {
  inset-inline-start: unset;
}

@media (max-width: 575.98px) {
  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem;
  }
}
@media (max-width: 1199.98px) {
  .authentication-cover .authentication-image {
    inset-block-end: 9%;
  }
  [dir=rtl] .authentication-cover .authentication-image {
    inline-size: 65%;
  }
}
#twoStepsForm .fv-plugins-bootstrap5-row-invalid .form-control {
  border-color: #ff4d49;
}

.light-style .authentication-wrapper .authentication-bg {
  background-color: #fff;
}

.dark-style .authentication-wrapper .authentication-bg {
  background-color: #30334e;
}

.form-input {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.form-input > span {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1em;
  color: #223E79;
}
.form-input .form-input-flex-button {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.form-input .form-input-flex-button input {
  flex: 1;
}
.form-input .form-input-flex-button *:not(input) {
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
select,
textarea {
  width: 100%;
  height: 40px;
  line-height: 1;
  padding-left: 16px;
  padding-right: 8px;
  border: 1px solid #D6D7DC;
  outline: 0;
  background-color: var(--color-neutral-white);
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=url]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-neutral-grey2);
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=time]::placeholder,
input[type=url]::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--color-neutral-grey2);
}/*# sourceMappingURL=page-auth.css.map */