/* =========================================
   AUTHENTICATION THEME (Dark & Clean)
   ========================================= */

body.auth-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #000;
    background-image: radial-gradient(circle at 50% 0%, #1e1e24, #000 70%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.auth-container { width: 100%; padding: 20px; display: flex; justify-content: center; }

.auth-card {
    background: #0f0f10;
    border: 1px solid #333;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
}

.auth-logo {
    display: block;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.auth-card h2 { margin: 0 0 10px 0; font-size: 1.8rem; }
.auth-sub { color: #888; margin: 0 0 30px 0; font-size: 0.95rem; }

/* Form Elements */
.input-group { text-align: left; margin-bottom: 20px; }
.input-group label {
    display: block; font-size: 0.85rem; color: #ccc; margin-bottom: 8px; font-weight: 500;
}

.input-group input {
    width: 100%; box-sizing: border-box;
    padding: 12px; background: #1a1a1a; border: 1px solid #333;
    border-radius: 8px; color: white; font-size: 1rem;
    transition: 0.2s;
}
.input-group input:focus { border-color: #3b82f6; outline: none; }

.btn-auth {
    width: 100%; padding: 14px;
    background: #3b82f6; color: white;
    border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; margin-top: 10px;
    transition: 0.2s;
}
.btn-auth:hover { background: #2563eb; }

/* Extras */
.form-actions {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; margin-bottom: 24px; color: #888;
}
.form-actions a { color: #666; text-decoration: none; }
.form-actions a:hover { color: #fff; }

.auth-footer { margin-top: 30px; font-size: 0.9rem; color: #666; }
.auth-footer a { color: #3b82f6; text-decoration: none; font-weight: 600; }