.authentication-modal-wrapper #authentication-modal-background {
    visibility: hidden;
    opacity: 0;
    z-index: 39;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(29, 46, 57, 0.32);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    transition: all 0.3s linear;
  }
  .authentication-modal-wrapper #authentication-modal-background.visible {
    visibility: visible;
    opacity: 1;
  }
  .authentication-modal-wrapper #authentication-modal-container {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transform: translateY(100%);
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 16px 16px 0 16px;
    max-height: calc(100vh - 24px);
    overflow: scroll;
    transition: all 0.3s linear;
    z-index: 100;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container {
      visibility: hidden;
      opacity: 0;
      top: 50%;
      left: 50%;
      bottom: auto;
      right: auto;
      transform: translate(-50%, -50%);
      padding: 32px;
      min-width: 833px;
      max-width: 833px;
      max-height: calc(100vh - 100px);
      border-radius: 12px;
      overflow: auto;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header {
    position: relative;
    font-family: DanaFaNum;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header {
      margin-bottom: 40px;
      padding-top: 32px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-title {
    font-family: DanaFaNum !important;
    flex: 1 1 0%;
    margin-bottom: 0;
    color: #182230;
    font-weight: 600;
    font-size: 16px !important;
    line-height: 32px !important;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-title {
      width: 100%;
      text-align: center;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-description {
    font-family: DanaFaNum;
    margin-bottom: 0;
    color: #667085;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-description {
      font-size: 16px;
      line-height: 32px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-close-button {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    padding: 3px;
    border-radius: 6px;
    background-color: white;
    border: 1px solid #EAECF0;
    cursor: pointer;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-close-button svg {
    scale: 0.75;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-close-button {
      padding: 7px;
      border-radius: 8px;
    }
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-header .authentication-modal-close-button svg {
      scale: 1;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-label {
    position: relative;
    font-family: DanaFaNum;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    color: #475467;
    margin-bottom: 2px;
    display: inline-block;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper {
    font-family: DanaFaNum;
    font-size: 14px;
    line-height: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 11px;
    border: 1px solid #d0d5dd;
    color: #101828;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
    border-radius: 8px;
    outline: 3px solid transparent;
    transition: all 0.3s linear;
    overflow: hidden;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:focus-within {
    outline-color: #f1f2f4;
    border-color: #101828;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper {
      padding: 0 13px;
      font-size: 16px;
      line-height: 32px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper .form-input {
    width: 100%;
    padding: 5px 0;
    border: none;
    outline: none;
    box-shadow: none;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper .form-input {
      padding: 7px 0;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper .form-input:disabled {
    padding: 5px 11px;
    background-color: #F9FAFB;
    color: #D0D5DD;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper .form-input:disabled {
      padding: 7px 13px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper #password,
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper #confirmPassword {
    text-align: left;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper #username {
    text-align: left;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input:disabled) {
    border-color: #EAECF0;
    padding: 0;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) {
    flex-direction: row;
    justify-content: start;
    gap: 8px;
    padding: 5px 11px;
    cursor: pointer;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) {
      padding: 7px 13px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .form-input-checkbox {
    display: none;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .form-input {
    display: none;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .toggle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 2px;
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background-color: #F2F4F7;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .toggle-container span {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0588235294), 0px 1px 3px 0px rgba(16, 24, 40, 0.1019607843);
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .form-input-checkbox:checked ~ .toggle-container {
    background: #3A27F3;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .form-input-checkbox:checked ~ .toggle-container span {
    transform: translateX(-100%);
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .form-input-checkbox:checked ~ .toggle-title {
    display: none;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .form-input-checkbox:checked ~ .form-input {
    display: block;
    padding: 0;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .toggle-title {
    font-family: DanaFaNum;
    color: #667085;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.form-input-checkbox) .toggle-title {
      font-size: 16px;
      line-height: 32px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.show-password) .show-password,
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.show-password) .hidden-password {
    display: none;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.show-password) .show-password.active,
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-wrapper:has(.show-password) .hidden-password.active {
    display: block;
    cursor: pointer;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .input-error {
    display: none;
    margin: 0;
    color: #D92D20;
    font-family: DanaFaNum;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    font-family: DanaFaNum;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    margin-top: 2px;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container {
      font-size: 14px;
      line-height: 28px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s linear;
    color: #D0D5DD;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item .help-item-active-icon {
    display: none;
    scale: 0.8;
    margin-bottom: 2px;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item .help-item-active-icon {
      scale: 1;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item .help-item-inactive-icon {
    display: grid;
    place-items: center;
    margin-bottom: 2px;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item .help-item-active-icon.active {
    display: grid;
    place-items: center;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item .help-item-active-icon.active ~ .help-item-inactive-icon {
    display: none;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field .password-help-container .password-help-item.active {
    color: #17B26A;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field.error {
    display: block;
    margin: 0;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field.error .input-wrapper {
    margin: 0;
    margin-bottom: 2px;
    border-color: #FDA29B;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field.error .input-wrapper:focus-within {
    outline-color: rgba(240, 68, 56, 0.2392156863);
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .input-field.error .input-error {
    display: block;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper {
    transition: all 0.3s linear;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .input-label {
    position: relative;
    font-family: DanaFaNum;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    color: #475467;
    margin-bottom: 2px;
    display: inline-block;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group {
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 28px;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group {
      font-size: 16px;
      line-height: 32px !important;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group #day {
    font-family: DanaFaNum;
    font-size: 14px;
    line-height: 28px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 11px;
    border: 1px solid #d0d5dd;
    color: #101828;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
    border-radius: 8px;
    outline: 3px solid transparent;
    transition: all 0.3s linear;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group #day:focus {
    outline-color: #f1f2f4;
    border-color: #101828;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group #day {
      padding: 7px 13px;
      font-size: 16px;
      line-height: 32px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group #day::-moz-placeholder {
    color: #98A2B3 !important;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group #day::placeholder {
    color: #98A2B3 !important;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-selection__placeholder {
    color: #98A2B3;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .input-group {
    margin-bottom: 0 !important;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-container--bootstrap5.select2-container--focus:not(.select2-container--disabled) .form-select-solid, .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-container--bootstrap5.select2-container--open:not(.select2-container--disabled) .form-select-solid {
    background-color: white;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-container--bootstrap5.select2-container--focus:not(.select2-container--disabled).select2, .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-container--bootstrap5.select2-container--open:not(.select2-container--disabled).select2 {
    border-color: #475a67 !important;
    box-shadow: 0px 0px 0px 4px #f2f4f7, 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922) !important;
    border-radius: 8px;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-container--bootstrap5.select2-container--focus:not(.select2-container--disabled) .form-select:not(.form-select-solid):not(.form-select-transparent), .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .select2-container--bootstrap5.select2-container--open:not(.select2-container--disabled) .form-select:not(.form-select-solid):not(.form-select-transparent) {
    border-color: getColor("gray", 600);
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .birth-date-input .select2 .select2-container {
    box-shadow: unset !important;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .birth-date-group .birth-date-input .select2 .select2-selection {
    border: 1px solid #d0d5dd !important;
    padding: 8px 14px !important;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922) !important;
    border-radius: 8px;
    height: 100%;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper .input-error {
    display: none;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error {
    display: block;
    margin: 0;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group #day {
    border-color: #FDA29B;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group #day:focus {
    outline-color: rgba(240, 68, 56, 0.2392156863);
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group .select2-container--bootstrap5.select2-container--focus:not(.select2-container--disabled) .form-select-solid, .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group .select2-container--bootstrap5.select2-container--open:not(.select2-container--disabled) .form-select-solid {
    background-color: white;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group .select2-container--bootstrap5.select2-container--focus:not(.select2-container--disabled).select2, .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group .select2-container--bootstrap5.select2-container--open:not(.select2-container--disabled).select2 {
    border-color: #FDA29B !important;
    box-shadow: 0px 0px 0px 4px rgba(240, 68, 56, 0.2392156863), 0px 1px 2px 0px rgba(240, 68, 56, 0.2392156863) !important;
    border-radius: 8px;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group .select2-container--bootstrap5.select2-container--focus:not(.select2-container--disabled) .form-select:not(.form-select-solid):not(.form-select-transparent), .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .input-group .select2-container--bootstrap5.select2-container--open:not(.select2-container--disabled) .form-select:not(.form-select-solid):not(.form-select-transparent) {
    border-color: #FDA29B;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .birth-date-input .select2 .select2-container {
    box-shadow: unset !important;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .birth-date-group .birth-date-input .select2 .select2-selection {
    border: 1px solid #FDA29B !important;
    padding: 8px 14px !important;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.0509803922) !important;
    border-radius: 8px;
    height: 100%;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .birth-date-group-wrapper.error .input-error {
    display: block;
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .modal-form-submit-wrapper {
    position: sticky;
    margin: 0 -16px -16px;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px -1px 2px 0px rgba(16, 24, 40, 0.0509803922);
    padding: 12px 16px;
    background: white;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .modal-form-submit-wrapper {
      box-shadow: none;
      background: none;
      margin: 0;
      padding: 0;
      position: relative;
      grid-column-start: 2;
      display: flex;
      justify-content: end;
      align-items: start;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .modal-form-submit-wrapper .modal-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
    font-family: DanaFaNum;
    font-weight: 600;
    color: white;
    background-color: #1203A3;
    border-radius: 8px;
    font-size: 14px;
    line-height: 28px;
    padding: 6px 0;
    border: none;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .modal-form-submit-wrapper .modal-form-submit {
      font-size: 16px;
      line-height: 32px;
      padding: 6px 0;
      width: 160px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container .authentication-modal-form .modal-form-submit-wrapper .modal-form-submit:disabled {
    background-color: #FAFAFF;
    color: #DEDAFF;
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container::-webkit-scrollbar {
      width: 8px;
    }
    .authentication-modal-wrapper #authentication-modal-container::-webkit-scrollbar-track {
      background: #f9fafb;
      border-radius: 12px;
    }
    .authentication-modal-wrapper #authentication-modal-container::-webkit-scrollbar-thumb {
      background: #eaecf0;
      border-radius: 5px;
    }
  }
  .authentication-modal-wrapper #authentication-modal-container.visible {
    transform: translateY(0);
  }
  @media (min-width: 1024px) {
    .authentication-modal-wrapper #authentication-modal-container.visible {
      visibility: visible;
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
  