@layer base {

    body::before {

        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        pointer-events: none;
        z-index: -1;

    }

    body {
        background: linear-gradient(to top, rgba(15, 92, 128, 0.4), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, rgba(15, 92, 128, 0.95), rgba(15, 92, 128, 0.75), rgba(0, 0, 0, 0)), url(/img/bg/valley-2560.jpg) no-repeat center center fixed;
        background-size: cover;
    }

    .card-title {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
        font-family: "Nunito", sans-serif;
    }

    .card-title .vg-name {
        max-width: 366px;
        font-size: 48px;
        font-weight: 800;
        letter-spacing: -.025em;
        margin-top: 12px;
        white-space: nowrap;
        background: linear-gradient(to right,
                #6fa033 0%,
                #284888 67%,
                #0d4d6a 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .card-title .vg-sitetag {
        font-weight: 800;
        letter-spacing: -.025em;
        font-size: 32.5px;
        color: #525252;
        margin-top: 12px;

    }

    .separator {
        display: grid;
        width: 100%;
        align-items: center;
        grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
        grid-gap: var(--spacing);
    }

    .separator:before,
    .separator:after {
        content: '';
        height: 1px;
        background-color: #d8d8d8;
        margin: calc(var(--spacing) * 4);
    }

    .register-picker-eyebrow {
        margin-top: 12px;
        padding: 8px 40px;
        border-radius: 999px;
        background: var(--color-secondary);
        color: var(--color-card);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        text-align: center;
    }

    /* Form inputs — white background + brand-tinted border so they're visible on the white card.
   Unlayered so these win over Tailwind's @layer utilities (bg-muted, border-input). */
    form input:not([type="hidden"]) {
        background-color: #ffffff;
        border-color: #a0b8c6;
    }

    form input:not([type="hidden"]):focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #145271;
    }

    form input:disabled {
        background-color: #f0f4f6;
        opacity: 0.6;
    }

    /* Method selector buttons */
    [aria-label="Registration method"] .flex>button,
    [aria-label="Registration method"]>button {
        height: 2.5rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Microsoft 365 button to get the icon properly gapped */
    [aria-label="Registration method"]>button {
        color: #4B5563;
        gap: 0.75rem;
    }
}