*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

.auth-wrapper {
    min-height:100vh;
    background:linear-gradient(135deg,#002D54,#004a87);
    display:flex;
    align-items:center;
    justify-content:center;
}

.card{
    background:#fff;
    width:100%;
    max-width:420px;
    padding:28px;
    border-radius:14px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

/* Logo */
.logo{
    text-align:center;
    margin-bottom:18px;
}
.logo img{
    max-height:55px;
}

/* Mobile display */
.mobile-box{
    text-align:center;
    margin-bottom:6px;
}
.mobile-box strong{
    font-size:16px;
    color:#002D54;
}
.info-text{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-bottom:14px;
}

/* Error Box */
.error-box{
    background:#fdecea;
    color:#b00020;
    padding:10px 12px;
    border-radius:8px;
    font-size:14px;
    margin-bottom:16px;
    text-align:center;
    border:1px solid #f5c2c0;
}

/* OTP */
.otp-group{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}
.otp-group input{
    width:60px;
    height:55px;
    text-align:center;
    font-size:20px;
    font-weight:bold;
    border-radius:12px;
    border:2px solid #002D54;
    outline:none;
    transition:0.25s ease;
}
.otp-group input:focus{
    border-color:#D4AF37;
    box-shadow:0 0 8px rgba(212,175,55,0.6);
}

/* Timer + Resend */
.timer{
    text-align:center;
    font-size:14px;
    color:#002D54;
    margin-bottom:14px;
}
.timer span{
    font-weight:bold;
}

.resend{
    text-align:center;
    margin-bottom:18px;
}
.resend button{
    background:none;
    border:none;
    color:#002D54;
    font-weight:bold;
    cursor:pointer;
}
.resend button:disabled{
    color:#aaa;
    cursor:not-allowed;
}

/* Verify Button */
button.verify-btn{
    width:100%;
    padding:12px;
    background:#D4AF37;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:bold;
    color:#002D54;
    cursor:pointer;
}
button.verify-btn:hover{
    background:#c9a633;
}

/* Partner Slider */
.partner-slider{
    overflow:hidden;
    margin-top:22px;
}
.partner-track{
    display:flex;
    width:max-content;
    animation:scroll 16s linear infinite;
}
.partner-track img{
    height:30px;
    margin:0 15px;
    filter:grayscale(100%);
    opacity:0.8;
}

@keyframes scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

/* Responsive */
@media(max-width:400px){
    .card{
        padding:22px;
    }
    .otp-group input{
        width:50px;
        height:48px;
        font-size:18px;
    }
}

.field{
    margin-bottom:18px;
}

.field label{
    font-size:14px;
    margin-bottom:6px;
    display:block;
    color:#002D54;
}

.field input{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ccc;
    font-size:15px;
    outline:none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus{
    border-color:#002D54;           /* same login blue */
    box-shadow:0 0 0 1px #002D54;   /* makes focus darker */
    outline:none;
}

/* Password wrapper (same as login) */
.password-box{
    position:relative;
}

/* ===== LOGIN STYLE BUTTON (RESET PASSWORD) ===== */

.verify-btn{
    width:100%;
    padding:12px;
    background:#D4AF37;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:bold;
    color:#002D54;
    cursor:pointer;
    transition:background 0.2s ease;
}

.verify-btn:hover{
    background:#c9a633;
}