.auth-page {
    min-height: 100vh;
    padding: 36px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-shell {
    width: 100%;
    max-width: 1180px;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    background: #ffffff;
    border: 1px solid rgba(16, 32, 44, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(16, 32, 44, 0.08);
    position: relative;
}

.auth-hero {
    position: relative;
    background-image: url('/assets/img/login-google-hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    overflow: hidden;
    transition: transform 180ms ease-out;
    will-change: transform;
}

.auth-copy {
    position: relative;
    z-index: 2;
    padding: 30px 34px;
    max-width: 640px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.auth-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #0ea66a;
}

.auth-copy h1 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.06;
    color: #10202c;
    text-wrap: balance;
}

.auth-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #4f6576;
    max-width: 620px;
}

.auth-panel {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.auth-card {
    width: 100%;
    max-width: 430px;
}

.auth-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.auth-brand img {
    width: 56px;
    height: auto;
    display: block;
}

.auth-brand h2 {
    margin: 0 0 4px;
    font-size: 32px;
    line-height: 1.05;
    color: #123247;
}

.auth-brand p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: #5c7282;
}

.auth-google-btn {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    color: #3c4a57;
    border: 1px solid rgba(16, 32, 44, 0.12);
    border-radius: 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .18s ease;
    box-shadow: 0 8px 22px rgba(16, 32, 44, 0.04);
}

.auth-google-btn:hover {
    background: #f8fbfc;
    transform: translateY(-1px);
}

.auth-google-svg {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-google-svg svg {
    width: 20px;
    height: 20px;
    display: block;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 18px 0 16px;
}

.auth-divider::before {
    content: "";
    position: absolute;
    inset: 50% 0 auto 0;
    border-top: 1px solid rgba(16, 32, 44, 0.10);
    transform: translateY(-50%);
}

.auth-divider span {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    background: #ffffff;
    color: #6f8391;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.auth-form label {
    display: block;
    margin: 10px 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #123247;
}

.auth-form input {
    width: 100%;
    border: 1px solid rgba(16, 32, 44, 0.12);
    border-radius: 14px;
    padding: 14px;
    font-size: 15px;
    color: #10202c;
    background: #ffffff;
    transition: .18s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: rgba(14, 166, 106, 0.55);
    box-shadow: 0 0 0 4px rgba(14, 166, 106, 0.10);
}

.auth-submit {
    width: 100%;
    margin-top: 20px;
    min-height: 54px;
    border: 0;
    border-radius: 14px;
    background: #0ea66a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: .18s ease;
}

.auth-submit:hover {
    background: #0c8c59;
    transform: translateY(-1px);
}

.auth-hint {
    margin: 16px 0 0;
    color: #5c7282;
    font-size: 13px;
    line-height: 1.5;
}

.auth-alert {
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.auth-alert-error {
    background: #fff1f1;
    color: #9b1c1c;
    border: 1px solid #f5c2c2;
}

/* Tablet e abaixo */
@media (max-width: 1100px) {
    .auth-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-hero {
        min-height: 320px;
        background-image: url('/assets/img/hero-versao-2.png');
        background-size: cover;
        background-position: center top;
        transform: none !important;
    }

    .auth-copy {
        max-width: 100%;
        padding: 24px 22px 0;
        background: linear-gradient(180deg, rgba(238,245,247,0.92), rgba(238,245,247,0.20));
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .auth-copy h1 {
        font-size: 30px;
    }

    .auth-panel {
        padding: 24px 20px 28px;
        box-shadow: none;
    }

    .auth-card {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .auth-page {
        padding: 16px 12px;
    }

    .auth-shell {
        border-radius: 22px;
    }

    .auth-hero {
        min-height: 470px;
        background-image: url('/assets/img/hero-versao-2.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center 12%;
        transform: none !important;
    }

    .auth-copy {
        padding: 18px 16px 0;
        background: linear-gradient(180deg, rgba(238,245,247,0.72), rgba(238,245,247,0.06));
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .auth-copy h1 {
        font-size: 24px;
        line-height: 1.1;
        max-width: 92%;
    }

    .auth-panel {
        padding: 18px 14px 22px;
        margin-top: -42px;
        position: relative;
        z-index: 2;
        box-shadow: none;
    }

    .auth-brand img {
        width: 50px;
    }

    .auth-brand h2 {
        font-size: 26px;
    }

    .auth-google-btn {
        font-size: 16px;
        min-height: 52px;
    }

    .auth-form input {
        padding: 13px 12px;
    }

    .auth-submit {
        min-height: 52px;
    }
}