@font-face {
  font-family: "TT-Talent-Regular";
  src: url("fonts/TT_Talent_Regular.eot");
  src: url("fonts/TT_Talent_Regular.eot?#iefix") format("embedded-opentype"), url("fonts/TT_Talent_Regular.woff") format("woff"), url("fonts/TT_Talent_Regular.woff2") format("woff2"), url("fonts/TT Talent Regular.ttf") format("truetype");
}
@font-face {
  font-family: "TT-Talent-Medium";
  src: url("fonts/TT_Talent_Medium.eot");
  src: url("fonts/TT_Talent_Medium.eot?#iefix") format("embedded-opentype"), url("fonts/TT_Talent_Medium.woff") format("woff"), url("fonts/TT_Talent_Medium.woff2") format("woff2"), url("onts/TT_Talent_Medium.ttf") format("truetype");
}
* {
  box-sizing: border-box;
  font-family: "TT-Talent-Regular", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

a {
  color: #1D264A;
}
a:hover {
  color: #5E6580;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #EFF2F9 inset !important;
}

.login-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 5px;
}

.login-form-container {
  width: 50%;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
}
.login-form-container h1 {
  font-size: 2.438rem;
  margin-bottom: 10px;
  color: #1D264A;
  font-family: "TT-Talent-Medium", sans-serif;
}

.login-form, .message-wrapper, .verification-section {
  width: 416px;
  max-width: 100%;
}

.logo {
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 50px;
}

.subtitle {
  font-size: 1.18rem;
  color: #5E6580;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.error {
  color: #E42309;
}
.error label {
  color: #E42309;
}
.error .input-field {
  border-bottom: 2px solid #E42309;
}
.error .input-field:hover {
  border-bottom: 2px solid #E42309;
}

label, .title {
  display: block;
  font-size: 1rem;
  color: #5E6580;
  margin-bottom: 5px;
}

.input-field {
  width: 100%;
  padding: 12px 15px;
  border: 0 none;
  border-radius: 4px;
  font-size: 1.188rem;
  background-color: #EFF2F9;
  color: #1D264A;
}
.input-field:hover, .input-field:focus {
  background: #E7EAF4;
  border: 0 none;
  outline: none;
}
.input-field:disabled {
  background-color: #D9DEEB !important;
}
.input-field:focus {
  border-bottom: 2px solid #1D264A !important;
}

::-moz-placeholder {
  color: #9A9FB0;
}

::placeholder {
  color: #9A9FB0;
}

.password-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}

.eye-icon {
  width: 20px;
  height: 20px;
}

.hidden {
  display: none;
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-selected {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 1.188rem;
  background-color: #EFF2F9;
  color: #1D264A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.dropdown-selected::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.dropdown-selected.active::after {
  background-color: #1D264A;
  height: 2px;
}
.dropdown-selected.error::after {
  background-color: #e53935;
  height: 2px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}
.dropdown-arrow.up {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f7f7fc;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.dropdown-options.show {
  max-height: 200px;
}

.dropdown-option {
  padding: 6px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.dropdown-option:hover {
  background-color: #e6f7f5;
  color: #277078;
}

.forgot-password {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.188rem;
  text-decoration: none;
  margin-top: 5px;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background-color: #1a2352;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.188rem;
  cursor: pointer;
  margin-top: 20px;
}
.btn-primary:hover {
  background-color: #131a3e;
}

.graphic-container {
  width: 50%;
  height: 100%;
  background: url("../images/bg-texture.svg") no-repeat 100% #e6f7f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.graphic-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.graphic-text {
  text-align: center;
  margin-bottom: 20px;
  z-index: 2;
  width: 100%;
}
.graphic-text h2 {
  font-size: clamp(24px, 4vw, 3.125rem);
  color: #1D264A;
  padding-top: 3.5rem;
}
.graphic-text p {
  font-size: clamp(24px, 4vw, 3.125rem);
  color: #1a2352;
  background-color: rgba(178, 223, 219, 0.6);
  padding: 5px 15px;
  display: inline-block;
}

.graphic-image-container {
  position: relative;
  width: 628px;
  max-width: 90%;
  height: 523px;
}

.graphic-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.h-login-container {
  height: calc(100vh - 205px);
  align-items: center;
}

.select {
  position: relative;
  background: #EFF2F9 !important;
  border-radius: 4px !important;
  border: 0 !important;
  height: 44px;
  box-shadow: none !important;
  border-bottom: 2px solid transparent !important;
}
.select .selectBtn {
  background: var(--bg1);
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: #EFF2F9 !important;
  padding: 0.3125rem 1rem;
  height: 44px;
  align-items: center;
  display: flex;
  line-height: 20px;
  color: #1D264A;
}
.select .selectBtn:after {
  content: "";
  position: absolute;
  background-image: url(../assets/image/dropdownarrow.svg);
  top: 45%;
  right: 15px;
  width: 13px;
  height: 8px;
  transition: 0.2s ease;
  background-repeat: no-repeat;
}
.select .selectBtn.icon-rotate:after {
  content: "";
  transform: rotate(180deg);
}
.select .selectBtn.toggle {
  border-radius: 3px 3px 0 0;
}
.select .selectBtn.toggle:after {
  transform: translateY(-50%) rotate(-135deg);
}
.select .selectBtn:hover {
  background: #E7EAF4 !important;
}
.select .selectDropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  background: var(--bg1);
  z-index: 1;
  background: #FFFFFF;
  transform: scale(1, 0);
  transform-origin: top center;
  visibility: hidden;
  transition: 0.2s ease;
  box-shadow: 0px 1px 2px rgba(15, 56, 113, 0.12), 0px 2px 4px rgba(15, 56, 113, 0.08);
  background: #EFF2F9 !important;
  border: 0;
  border-top: 2px solid #1D264A;
  overflow: hidden;
  max-height: 134px;
  z-index: 99;
  overflow-y: scroll !important;
}
.select .option {
  padding: 0.3125rem 1rem;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 20px;
  color: #1D264A;
}
.select .option:hover {
  color: #277078;
  background: #C6E8E6 !important;
}
.select .selectDropdown.toggle {
  visibility: visible;
  transform: scale(1, 1);
}

.notification {
  width: 100%;
  background-color: #FFF5EC;
  border-radius: 8px;
  padding: 16px;
  margin: 32px 0 10px;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.notification-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-basis: 100%;
}
.notification-message {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 2px;
  flex-basis: 100%;
}

.warning-icon {
  color: #E42309;
  margin-right: 8px;
}
.warning-text {
  color: #E42309;
  font-weight: 600;
  font-size: 1rem;
  flex-basis: 90%;
  display: flex;
}

.otp-container {
  display: flex;
  gap: 20px;
}
.otp-container .space-sm {
  padding: 12px 24px !important;
}
.otp-container .input-sm {
  width: 64px !important;
  min-height: 80px !important;
  font-size: 2.438rem;
  color: #1E2532;
  text-align: center;
  box-shadow: none;
}
.otp-container .input-area {
  display: flex;
  gap: 30px;
}

.otp-footer-links {
  color: #5E6580;
}
.otp-footer-links a {
  cursor: pointer;
}

/* For Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .graphic-image-container {
    height: 300px !important;
  }
}
@media (min-width: 1366px) and (max-width: 1600px) {
  .graphic-image-container {
    height: 370px !important;
  }
}
@media (max-width: 1440px) {
  .login-form-container h1 {
    font-size: 2rem;
  }
  .graphic-image-container {
    width: 628px;
    height: 523px;
  }
  .graphic-text h2 {
    padding-top: 0.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .btn-primary {
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .graphic-image-container {
    width: 90%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .login-form-container {
    width: 100%;
  }
  .graphic-container {
    display: none;
  }
  .login-form-container h1 {
    font-size: 1.75rem;
  }
  .login-form-container .subtitle {
    font-size: 1rem;
  }
  label {
    font-size: 0.938;
  }
  .input-field,
  .dropdown-selected {
    font-size: 1rem;
  }
  .h-login-container {
    height: auto;
  }
  .logo {
    padding: 10px 0;
  }
}/*# sourceMappingURL=login.css.map */