/* ------------------------------------------------------------------ *
 * SimplyCar — auth screens custom styling
 * Loaded automatically by DevDojo Auth (vendor head: public/auth/app.css)
 * Logo + headings come from config/devdojo/auth/{appearance,language}.php
 * ------------------------------------------------------------------ */

:root {
    --sc-blue: #2f6bff;
    --sc-navy: #00173d;
    --sc-muted: #5b6b86;
}

/* Soft branded page background behind the auth card (layers over the
   inline white background-color set by the appearance config). */
#auth-body {
    background-image:
        radial-gradient(1100px 520px at 50% -10%, rgba(47, 107, 255, 0.10), transparent 60%),
        linear-gradient(180deg, #f7f9ff 0%, #ffffff 55%);
}

/* Card polish on desktop (full-screen sheet stays clean on mobile). */
@media (min-width: 640px) {
    #auth-container {
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 22px;
        box-shadow:
            0 1px 2px rgba(15, 23, 42, 0.04),
            0 24px 60px -28px rgba(47, 107, 255, 0.28);
    }
}

/* --- Logo --- */
#auth-heading-container > div:first-child {
    margin-bottom: 22px;
}
#auth-heading-container > div:first-child a {
    transition: transform 0.25s ease;
}
#auth-heading-container > div:first-child a:hover {
    transform: translateY(-1px);
}

/* --- Headline --- */
#auth-heading-title {
    margin-top: 2px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--sc-navy);
}

/* --- Subheadline (welcome message) --- */
#auth-heading-description {
    max-width: 22rem;
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--sc-muted);
    opacity: 1;
}

/* --- "Bienvenue" eyebrow — login page only --- */
[data-auth="auth-login"] #auth-heading-title::before {
    content: "Bienvenue 👋";
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--sc-blue);
    background: rgba(47, 107, 255, 0.10);
    border-radius: 999px;
}
