/* ========================================= 
OTP  
========================================== */
.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.otp-box {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    width: 320px;
}

.otp-sub {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 15px;
}

.otp-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: none;
}

.send-btn, .verify-btn {
    width: 100%;
    padding: 10px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.otp-digit {
    width: 40px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    border-radius: 8px;
    border: none;
}

.timer {
    font-size: 12px;
    color: #aaa;
}

.resend-btn {
    margin-top: 5px;
    background: none;
    border: none;
    color: #00c3ff;
    cursor: pointer;
}

.resend-btn:hover {
    text-decoration: underline;
}