.main-login-div {
    position: relative;
}

.verification-otp-para {
    /* font-weight: 600; */
    font-size: 28px;
    line-height: 42px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0px;
    margin-bottom: 6px;
    
}

.otp-description {
    text-align: center;
    /* font-weight: 500; */
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    /* color: rgba(255, 255, 255, 0.8); */
    margin-bottom: 0px;
    margin-top: 0px; 
    padding-bottom: 30px;
    
}

.forget-password-input-container {
    display: flex; 
    justify-content: center; 
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.form-container {
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    max-width: 408px;
    width: 100%;

}
.form-main-div {
    display: flex;
    justify-content: center;
}

.form-lables {

    /* font-weight: 500; */
    font-size: 20px;
    line-height: 30px;
    /* color: #FFFFFF; */
    /* margin-bottom: 10px; */
    padding-bottom: 0px;
    
}

.form-inputs {
    border-radius: 10px;
    background-color:#FFFFFF !important;
    height: 50px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #E7E7E7;
}
.form-inputs:focus {
    border: none;
    outline: none;
}
.form-inputs::placeholder {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4C4C4C;
    
}


    
.email-icon-and-input-container {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 52px;
    border-radius: 10px;
    background: #303030;
    margin-bottom: 20px;
}

.email-phone-icon {
    padding-left: 22px;
    padding-right: 12px;
    width: 24px;
    height: 24px;
}


.otp-input {
    width: 65px;
    height: 53px;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    border: 2px solid #E7E7E7;
    z-index: 1;
    position: relative;
    background-color: white; 
  }

  .otp-box {
    position: relative;
    background-color: white;
    border-radius: 8px; 
  }

  .custom-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    background-color:#C3C3C3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
  }

  
/* Hide dot when input has a value or is focused */
.otp-input:focus + .custom-placeholder,
.otp-input:not(:placeholder-shown) + .custom-placeholder {
  display: none;
}

.form-input-elements {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    width: 100%;
}
