/* Extracted from app/controller/AnalyticsAuth.php */
.auth-container {
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #111718;
                padding: 2rem;
            }
            .auth-card {
                background: white;
                border-radius: var(--border-radius);
                padding: 2.5rem;
                max-width: 440px;
                width: 100%;
                border: 1px solid var(--border-color);
                box-shadow: var(--shadow-lg);
            }
            .auth-logo {
                text-align: center;
                margin-bottom: 1.2rem;
            }
            .auth-logo h1 {
                color: var(--primary);
                font-size: 2rem;
                margin: 0;
            }
            .auth-footer {
                text-align: center;
                margin-top: 1.5rem;
                padding-top: 1.5rem;
                border-top: 1px solid var(--gray-200);
            }
            .error-list {
                background: var(--danger-light);
                border-left: 4px solid var(--danger);
                padding: 1rem;
                margin-bottom: 1.5rem;
                border-radius: 0.5rem;
            }
            .error-list ul {
                margin: 0;
                padding-left: 1.25rem;
                color: var(--danger);
            }
            .success-message {
                background: var(--success-light, #DDEDE7);
                border-left: 4px solid var(--success, #0E6F5C);
                padding: 1rem;
                margin-bottom: 1.5rem;
                border-radius: 0.5rem;
                color: var(--success-dark, #05382E);
            }
            .muted-copy {
                color: var(--gray-600);
                margin-bottom: 1.5rem;
                text-align: center;
            }
            .auth-divider {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                color: var(--gray-500);
                font-size: 0.875rem;
                margin: 1.25rem 0;
            }
            .auth-divider::before,
            .auth-divider::after {
                content: "";
                flex: 1;
                border-top: 1px solid var(--border-color);
            }
            .oauth-buttons {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }
            .oauth-button {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.75rem;
                width: 100%;
                min-height: 46px;
                padding: 0.75rem 1rem;
                border: 1px solid var(--border-color);
                border-radius: 0.5rem;
                background: white;
                color: var(--gray-800);
                text-decoration: none;
                font-weight: 600;
                font: inherit;
                cursor: pointer;
                transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
            }
            .oauth-button:hover {
                border-color: var(--primary);
                background: var(--gray-50, #F7F5EF);
                color: var(--gray-900);
                text-decoration: none;
            }
            .oauth-button:active {
                transform: scale(0.99);
            }
            .oauth-mark {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 22px;
                height: 22px;
                flex-shrink: 0;
            }
            .oauth-mark svg {
                display: block;
                width: 22px;
                height: 22px;
            }
            .oauth-mark-google {
                color: #4285F4;
            }
            .oauth-mark-github {
                color: #24292f;
            }
            .oauth-mark-email {
                color: var(--primary);
            }

.auth-logo-link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.auth-logo-brand {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.auth-logo-img {
    height: 40px;
    width: 40px;
}

.auth-logo-title {
    margin: 0;
}

.auth-section-title {
    margin-bottom: 1.5rem;
}

.auth-logo-subtitle {
    color: var(--gray-800);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 1rem 0 0;
}

.auth-terms {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    gap: 0.625rem;
}

.auth-form-spaced {
    margin-top: 1.5rem;
}

.auth-terms input[type="checkbox"] {
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: auto;
}

.auth-terms span {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

.auth-inline-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer p {
    color: var(--gray-600);
    margin: 0;
}

.auth-submit-full {
    margin-top: 1rem;
    width: 100%;
}

.auth-link-row {
    margin-top: 0.5rem;
    text-align: right;
}

.auth-link-row a {
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
}

.auth-centered-action {
    text-align: center;
}
