.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: #6c757d;
    font-size: 0.875rem;
    margin: 0;
}

.auth-card h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 24px;
    text-align: center;
}

.auth-description {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 20px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.auth-form .form-control:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e94560;
}

.form-checkbox a {
    color: #e94560;
    text-decoration: none;
}

.form-link {
    color: #e94560;
    text-decoration: none;
    font-size: 0.875rem;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 14px 24px;
    font-size: 1.05rem;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.auth-switch a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
}

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

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.auth-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

@media (max-width: 480px) {
    .auth-card {
        padding: 24px;
    }
    .auth-logo {
        font-size: 1.5rem;
    }
}
