/* ===== Minimal Clean Persian Login - Final Version ===== */
body.login {
    background: #f8f9fa url('../assets/Font/pattern-gray.png') repeat;
    background-size: 280px;
    font-family: 'CustomBody', system-ui, -apple-system, sans-serif;
    margin: 0;
    direction: rtl;
    text-align: right;
}

/* وسط‌چین */
#login {
    width: 100%;
    max-width: 380px;
    padding: 20px 10px;
    margin-top: 40px;
}

/* ==================== باکس عنوان و توضیحات (جای لوگو) ==================== */
.custom-login-header-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 35px;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: none;
}

.site-info {
    font-size: 17px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

.site-info span {
    font-size: 17px;
    font-weight: 500;
    color: #1f2937;
}

/* ==================== فرم ورود ==================== */
.login form {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px 35px;
    border: 1px solid #e2e8f0;
    box-shadow: none;
}

/* فیلدها */
.login label {
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 8px;
    display: block;
}

.login .input {
    width: 100%;
    height:40px;
    padding: 14px 16px;
    font-size: 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.25s;
}

.login .input:focus {
    font-size: 12px;
    border-color: #4f46e5;
    outline: none;
}

/* کپچا */
.captcha-field {
    margin: 25px 0 15px;
}

.captcha-field label {
    font-size: 15px;
    color: #374151;
}

/* دکمه ورود */
.login .button-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #4f46e5;
    border: none;
    border-radius: 10px;
    height: auto;
    margin-top: 8px;
}

.login .button-primary:hover {
    background: #4338ca;
}

/* فوتر کپی‌رایت */
.custom-login-footer {
    text-align: center;
    margin-top: 35px;
    padding: 0 10px;
}

.custom-login-footer p {
    color: #6b7280;
    font-size: 13.5px;
    margin: 0;
}

.custom-login-footer a {
    color: #4f46e5;
    text-decoration: none;
}

.custom-login-footer a:hover {
    text-decoration: underline;
}

/* ==================== فونت فارسی ==================== */
@font-face {
    font-family: 'CustomBody';
    src: url('../Font/body.woff2') format('woff2'),
         url('../Font/body.woff') format('woff');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

.login * {
    font-family: 'CustomBody', system-ui, sans-serif !important;
}

/* ریسپانسیو */
@media (max-width: 480px) {
    #login {
        padding: 10px 5px;
        margin-top: 20px;
    }
    .custom-login-header-box,
    .login form {
        padding-left: 25px;
        padding-right: 25px;
        border-radius: 14px;
    }
}