/* Reset minimal */
* {
    box-sizing: border-box;
    font-family: IRANSans, Tahoma, sans-serif;
}

body.login-body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Card */
.login-card {
    width: 360px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0f172a;
}

/* Inputs */
.login-card input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
}

.login-card input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Button */
.login-card button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.login-card button:hover {
    background: #1d4ed8;
}

/* OTP link */
.otp-link {
    text-align: center;
    margin-top: 15px;
}

.otp-link a {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}

.otp-link a:hover {
    text-decoration: underline;
}

/* Errors */
.login-errors {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
}

/* Captcha label */
.captcha {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #334155;
}