/* ── Extracted from templates/login.html — Phase 1 migration ── */

body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: #F5F0E8;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-card {
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            padding: 48px 40px;
            width: 100%;
            max-width: 400px;
            text-align: center;
        }

        .login-logo {
            font-family: 'Inter', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: #1A1A1A;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
        }

        .login-subtitle {
            font-size: 0.875rem;
            color: #999999;
            margin-bottom: 40px;
        }

        .btn-google {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 12px 20px;
            background: #1A1A1A;
            color: #FFFFFF;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: background 150ms ease;
        }

        .btn-google:hover {
            background: #333333;
        }

        .btn-google svg {
            flex-shrink: 0;
        }

        .login-error {
            margin-top: 20px;
            padding: 10px 14px;
            background: #FDE8F1;
            border-radius: 6px;
            font-size: 0.8125rem;
            color: #c0185a;
        }

        .login-footer {
            margin-top: 32px;
            font-size: 0.75rem;
            color: #999999;
        }
