
/* css/auth.css */
/* ✅ পর্ব ১১: auth পেজ (login/register/2FA) এর জন্য — আগে এই পেজগুলো
   সম্পূর্ণ আনস্টাইলড ছিল, <br><br> দিয়ে লাইন-ব্রেক করা raw HTML।
   frontend.css এর --brand-primary/--brand-hover ভ্যারিয়েবল পুনর্ব্যবহার
   করা হচ্ছে, যাতে সাইটের থিম কালারের সাথে সামঞ্জস্যপূর্ণ থাকে। */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 36px 32px;
}

.auth-card__logo {
    text-align: center;
    margin-bottom: 24px;
}

.auth-card__logo img {
    max-height: 44px;
}

.auth-card h1 {
    font-size: 22px;
    margin: 0 0 24px;
    text-align: center;
    color: #1f2937;
}

.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"],
.auth-field input[type="tel"] {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.15s ease;
}

.auth-field input:focus {
    outline: none;
    border-color: var(--brand-primary, #111827);
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #374151;
}

.auth-submit {
    width: 100%;
    padding: 12px;
    background: var(--brand-primary, #111827);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.auth-submit:hover {
    background: var(--brand-hover, #2779bd);
}

.auth-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-errors ul {
    margin: 0;
    padding-left: 18px;
}

.auth-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer-link a {
    color: var(--brand-primary, #111827);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

.auth-help-text {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 20px;
}

