/* === Auth/Login Page Styles === */

.auth-body {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    background-color: var(--light-bg-secondary);
    color: var(--light-text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    background: var(--light-bg-primary);
    border: 1px solid var(--light-border-primary);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 28px;
    animation: authFadeInUp 350ms ease-out both;
}

@keyframes authFadeInUp {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.auth-header img {
    height: 52px;
    width: auto;
    margin-bottom: 6px;
}

.auth-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.auth-subtitle {
    margin: 4px 0 0 0;
    color: var(--light-text-secondary);
    font-size: 0.95rem;
}

.auth-form { margin-top: 12px; }

.auth-input { margin-bottom: 14px; }

.auth-input label {
    display: block;
    margin-bottom: 6px;
    color: var(--light-text-secondary);
    font-size: 0.9rem;
}

.auth-input input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--light-border-input);
    border-radius: 10px;
    background-color: var(--light-input-bg);
    color: var(--light-text-primary);
    box-sizing: border-box;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-input input:focus {
    outline: none;
    border-color: var(--action-primary-bg);
    box-shadow: 0 0 0 0.15rem rgba(0, 122, 255, 0.2);
}

.auth-actions { 
    display: grid; 
    gap: 10px; 
    margin-top: 6px; 
}

.full-width { 
    width: 100%; 
    box-sizing: border-box; 
}

button.tertiary.full-width { width: 100%; }

.auth-message {
    margin-top: 10px;
    text-align: center;
    color: var(--flash-error-text);
    min-height: 18px;
}

