/* START OTP BOX */
.otp-container{
    display: flex;
    margin-top: 20px;
}
.otp-inputlogin {
    flex: auto;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}
/* END OTP BOX */

/* Resend OTP container - positioned correctly */
.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling for Resend OTP link */
#mobile_resend_otp {
    font-size: 14px;
    text-decoration: none;
}

/* Hover effect */
#mobile_resend_otp:hover {
    text-decoration: underline;
}

/* Styling for the timer message */
#mobiletimer_resend_otp {
    font-size: 14px;
    color: #777;
}
/* START MOBILE VIEW  START OTP BOX*/
@media (max-width: 350px) {
    .otp-inputlogin 
    {
        flex: auto;
        width: 30px;
        height: 30px;
        text-align: center;
        font-size: 13px;
        margin: 0 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        outline: none;
        transition: border-color 0.3s;
    }
}
/* END MOBILE VIEW  START OTP BOX*/