/* PartidoListo STS login — mobile-first social auth (B-019) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.login-page--social {
    font-family: 'Poppins', sans-serif;
    color: #162539;
    max-width: 24rem;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
}

.login-page--social .page-header {
    text-align: center;
    margin-bottom: 2rem;
    border: none;
}

.login-page--social .page-header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.login-page--social .pl-login-logo {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    background: #162539;
    color: #ffce12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.login-page--social .pl-login-subtitle {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.pl-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pl-social-btn {
    display: flex;
    min-height: 48px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.pl-social-btn:hover {
    opacity: 0.92;
    text-decoration: none;
}

.pl-social-btn--google {
    background: #fff;
    color: #162539;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pl-social-btn--facebook {
    background: #1877f2;
    color: #fff;
}

.pl-social-btn--instagram {
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.pl-social-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.pl-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.pl-divider::before,
.pl-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d1d5db;
}

.pl-divider span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
}

.pl-local-toggle {
    display: block;
    width: 100%;
    min-height: 48px;
    border-radius: 0.75rem;
    border: 2px solid rgba(22, 37, 57, 0.2);
    background: transparent;
    color: #162539;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    padding: 0.75rem 1rem;
}

.pl-local-toggle:hover {
    background: rgba(22, 37, 57, 0.04);
}

.pl-local-form {
    margin-top: 1.25rem;
}

.pl-local-form.is-hidden {
    display: none;
}

.pl-legal {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    padding: 0 0.5rem;
}

.pl-legacy-providers {
    margin-top: 1.5rem;
}

.pl-legacy-providers .list-inline-item {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .login-page--social {
        padding-top: 2.5rem;
    }
}
