/* Montserrat Variable Font */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900; /* Supports all weights from 100 to 900 */
  src: url(/assets/fonts/montserrat-variable.woff2) format('woff2');
}

/* Manrope Variable Font */
@font-face {
  font-display: swap;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 100 900; /* Supports all weights from 100 to 900 */
  src: url(/assets/fonts/manrope-variable.woff2) format('woff2');
}


:root {
  --app-font-family: Montserrat;
  --custom_max-height: 100vh;
  --auth_text_black: #0E0F12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--app-font-family, Montserrat), sans-serif !important;
}
body {
  min-height: var(--custom_max-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff !important;
}
::placeholder {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.main-container{
    height: var(--custom_max-height);
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
}
.main-section-body{
  max-width: 438px;
  width: 100%;
  height: var(--custom_max-height);
}
.form-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
  z-index: 101;
  padding: 25px;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.1);
  transition: right 0.5s ease;
  background-color: #fff;
  height: calc(var(--custom_max-height) - 40px);
}
.login-form{
display: flex;
flex-direction: column;
  position: relative;
  max-width: 438px;
  width: 100%;
  padding: 0px 15px 15px;
  border-radius: 8px;
  background-color: #fff;
  }

  .auth-header{
  min-height: 47px;
  font-size: 16px;
  display: flex;
      justify-content: center;
      align-items: center;
       box-shadow: 0 0 1px 0 rgba(24, 57, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    padding: 5px;
    border-radius: 99px;
        margin-bottom: 30px;
  }

  .input_box {
  position: relative;
  width: 100%;
  height: 50px;
  /*box-shadow: 0 0 1px 0 rgba(24, 57, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15); */
}
.input_box input {
    width: 100% !important;
    height: 100% !important;
    outline: none !important;
    border: 1px #C9DBFF solid;
    padding-left: 20px !important;
    vertical-align: middle !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 8px;
    padding-right: 35px;
}
.input_box input:focus {
  border-color: var(--auth_text_black);
}
.input_box i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #707070;
}
.input_box i.email,
.input_box i.password {
  left: 0;
}
.input_box input:focus ~ i.email,
.input_box input:focus ~ i.password {
  color: #7d2ae8;
}
.input_box i.pw_hide {
  position: unset !important;
  right: 0;
  font-size: 18px;
  cursor: pointer;
  color: #868788;
}

.button {
  padding: 6px 24px;
  border: 1px solid #D9E0E8;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  color: var(--auth_text_black);
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0 0 1px 0 rgba(24, 57, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15); */
  padding: 12px;
}
.button-text{
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;
}
.button:active {
  transform: scale(0.98);
}

.action-box{
   display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    background-color: #0E0F12 !important;
    color: #fff !important;
    border: none !important;
}

.sign-up-using-google-action-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.sign-up-using-email-action-box{
     display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding-top: 12px;
}

.otp-message-container{
    padding: 7px 0 0;
    font-size: 12px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #656358;
}

.or-text{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.email-otp-container{
    display: none;
}

.email-otp-container.active{
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.invalid input {
  border-color: #d93025;
}

.field .error {
  display: flex;
  align-items: center;
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
  display: none;
}

.invalid .error {
  display: flex;
}

#sign-up-using-otp-button, #verify-otp-button{
display: none;
}


.hidden {
    display: none !important;
}


.header{
padding: 0px 0px 10px;
}

.header-logo{
 height: 24px;
 cursor: pointer;
}

.main-section{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.password-field{
gap: 20px
}

.form-fields{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.email-form{
transition: transform 0.6s ease;
}

.last-step-container.active{
display: block;
opacity: 1;
   transition: opacity 0.5s ease-in;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000000;
  background-color: #ffffff;
}

.loader-image {
  width: 80px;
  height: 80px;
  animation: breathe 1.5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.sign-in-tab, .sign-up-tab{
     height: 47px;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
       margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.active-tab{

    background-color: #e6eef9;

}

.main-section-body{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 25px;
}

@media only screen and (max-width: 500px) {
  .form-container{
    margin: 0px 25px;
    padding: 25px 0px !important;
  }
  .loader-image {
    width: 70px;
    height: 70px;
  }
}

.auth-type-header{
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 24px;
color: var(--auth_text_black);
}
.auth-type-footer{
    font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;
color: var(--auth_text_black);
}

.powered-by{
    font-size: 12px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

#sign-in-using-email-section, #sign-up-using-email-section{
        display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-input-header{
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 18px;
text-align: left;
}

.sign-in-password-field,.sign-in-email-field, .organization-name-container, .last-name-container, .first-name-container, .enter-mobile-no-container, .reset-password-password-field, .email-field, .otp-content, .sign-up-password-container, .organization-field{
    gap: 5px;
    display: flex;
    flex-direction: column;
}

#redirect-register, #redirect-login, #redirect-to-login{
    cursor: pointer;
}
.iti{
    width: 100% !important;
    height: 50px !important;
    padding-left: 49px !important;

}

#dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% - 2px);
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

#forgot-password-button{
    cursor: pointer
}

.forgot-password-message{
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

#forgot-password-section, #reset-password-section{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forgot-password-image{
    width: 260px;
    height: 260px;
}

.forgot-password-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
}

.verified-data{
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -36px;
    right: 0;
    display: none;
    position: absolute;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.iti__country-container{
    border: 1px #C9DBFF solid !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.iti--fullscreen-popup.iti--container{
    height: var(--custom_max-height) !important;
}

.password-hint{
    text-align: left;
    padding: 4px 18px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
}

.password-heading{
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    /*padding-top: 18px;*/
}

.iti__tel-input{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.toast-close{
    padding: 0 5px 0 10px !important;
}

.toastify{
    font-size: 14px;
    border-radius: 8px !important;
}

.error-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #F3F3F3;
}

.error-content {
    text-align: center;
    padding: 20px;
}

.error-message {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
