.valid { 
    color: green; 
}
.invalid { 
    color: red; 
}

.show_hide_password {
    position: relative;
}

.show_hide_password .form-control {
    padding-right: 40px; /* Add space for the eye icon */
}

.show_hide_password .show-pass {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.otp-form {
    margin: -10px;
    margin-bottom: 20px;
    margin-top: -10px;
}
  
@media only screen and (max-width: 991px) {
    .otp-form {
        text-align: center;
        margin: -5px;
        margin-bottom: 20px;
        margin-top: -10px;
    }
}

.otp {
    width: 52px;
    height: 50px;
    text-align: center;
    padding: 0;
    margin: 10px;
    border-radius: 3px;
    background-color: transparent;
    border: 1px solid white;
    color: white;
}
@media only screen and (max-width: 991px) {
    .otp{
        width: 45px;
        height: 45px;
        margin: 5px;
    }
}
@media only screen and (max-width: 600px) {
    .otp {
        width: 40px;
        height: 40px;
    }
}
@media only screen and (max-width: 420px) {
    .otp {
        width: 35px;
        height: 35px;
        margin: 3px;
    }
}
@media only screen and (max-width: 375px) {
    .otp {
        margin: 0;
    }
}
.otp:focus {    
    border: 2px solid var(--primary-color);
}
.otp.required {
    border: 3px solid #ea5455;
}

#time {
    color: #ea5455;
}