/* ── Auth pages (login / registro) ────────────────────────── */

.copa-auth {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F7F7;
    padding: var(--space-9) var(--gutter-page);
}

.copa-auth-card {
    background: #FFFFFF;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 64px rgba(245, 130, 32, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
    /* ← antes: 0 16px 48px rgba(0,0,0,0.08) */
    width: 100%;
    max-width: 440px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.copa-auth-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copa-auth-card__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0;
}

.copa-auth-card__intro {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    margin: 0;
}

.copa-auth-card__alert {
    background: #FDECEC;
    border: 1px solid rgba(229, 57, 53, 0.25);
    border-radius: var(--radius-md);
    padding: 12px 16px;
}

.copa-auth-card__alert p {
    color: var(--danger);
    font-family: var(--font-body);
    font-size: 13px;
    margin: 0;
}

.copa-auth-card__alert p+p {
    margin-top: 4px;
}

.copa-auth-card__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.copa-auth-card__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.copa-auth-card__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #555;
    cursor: pointer;
}

.copa-auth-card__divider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copa-auth-card__divider-line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.copa-auth-card__divider-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #999;
}

.copa-auth-card__google {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copa-auth-card__google svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.copa-auth-card__footer {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: #999;
    margin: 0;
}

.copa-auth-card__footer a {
    color: var(--stihl-orange);
    font-weight: 600;
}


.copa-auth-card__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.copa-auth-card__brand img:first-child {
    height: 48px;
    width: auto;
}

.copa-auth-card__brand img:last-child {
    height: 22px;
    width: auto;
}