.register-section{
    background:#f8f8f8;
}

.register-card{
    max-width:650px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.register-card .form-control{
    height:55px;
    border-radius:12px;
}

.error{
    color:#dc3545;
    font-size:13px;
}

@media(max-width:768px){

    .register-card{
        padding:25px;
    }

}

.otp-wrapper{
    display:flex;
    justify-content:center;
    gap:10px;
}

.otp-input{
    width:55px;
    height:55px;
    border:1px solid #ddd;
    border-radius:12px;
    text-align:center;
    font-size:22px;
    font-weight:700;
}

.otp-input:focus{
    outline:none;
    border-color:#2E7D32;
}

#timer{
    color:#777;
    font-size:14px;
}

@media(max-width:768px){

    .otp-input{
        width:45px;
        height:45px;
        font-size:18px;
    }

}

.password-toggle{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#777;
}

.password-toggle:hover{
    color:#2E7D32;
}

#registerBtn:disabled{
    background:#cccccc !important;
    border-color:#cccccc !important;
    color:#666666 !important;
    cursor:not-allowed;
    opacity:.8;
}

#registerBtn:not(:disabled){
    background:#2E7D32;
    border-color:#2E7D32;
    cursor:pointer;
}

.resend-disabled{
    pointer-events:none;
    opacity:.5;
}

#registerMessage{
    display:block;
    margin-top:15px;
    text-align:center;
    font-size:14px;
    font-weight:500;
}

#otpMessage{
    display:block;
    margin-top:10px;
    font-size:14px;
    font-weight:500;
    color:#2E7D32;
}
.login-tabs{
    display:flex;
    margin-bottom:30px;
    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
}

.login-tab{
    flex:1;
    border:none;
    background:#fff;
    padding:14px;
    font-weight:600;
    cursor:pointer;
}

.login-tab.active{
    background:#2E7D32;
    color:#fff;
}