/* Auth Layout - Standalone login page without header */
/* Note: Main styling is in views/auth.css - this file provides base variables and theme toggle */

/* Light theme variables (default) */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Dark theme variables */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border-color: #334155;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Theme toggle fixed position */
.theme-toggle {
    position: fixed;
    top: clamp(10px, 2vw, 20px);
    right: clamp(10px, 2vw, 20px);
    z-index: 1000;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px var(--shadow-color);
}

.theme-toggle i {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Auth footer - base styling (overridden by auth.css for specifics) */
.auth-footer p {
    margin: 0;
}
