/* PP Social Login - front buttons */

.ppsoclogin {
    margin: 24px 0;
}

.ppsoclogin__divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    text-align: center;
}

.ppsoclogin__divider::before,
.ppsoclogin__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.ppsoclogin__divider-text {
    padding: 0 12px;
    color: #767676;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ppsoclogin__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ppsoclogin__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: filter 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.ppsoclogin__button:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

.ppsoclogin__button:hover {
    filter: brightness(0.95);
    text-decoration: none;
}

.ppsoclogin__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ppsoclogin__icon svg {
    display: block;
}

.ppsoclogin__label {
    flex: 1;
    text-align: center;
}

/* Filled (default) - Google: white with subtle border, brand-recommended */
.ppsoclogin--filled .ppsoclogin__button--google {
    background-color: #ffffff;
    color: #1f1f1f;
    border-color: #dadce0;
}
.ppsoclogin--filled .ppsoclogin__button--google:hover {
    background-color: #f8f9fa;
    border-color: #c6c8cc;
    filter: none;
}

/* Filled - Facebook brand blue */
.ppsoclogin--filled .ppsoclogin__button--facebook {
    background-color: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
}
.ppsoclogin--filled .ppsoclogin__button--facebook:hover {
    background-color: #166FE5;
    border-color: #166FE5;
    filter: none;
    color: #ffffff;
}

/* Outline variant - low-emphasis, monochrome look */
.ppsoclogin--outline .ppsoclogin__button {
    background-color: transparent;
    color: #1f1f1f;
    border-color: #dadce0;
}
.ppsoclogin--outline .ppsoclogin__button:hover {
    background-color: #f8f9fa;
    border-color: #c6c8cc;
    filter: none;
}

/* Side-by-side on wider screens */
@media (min-width: 600px) {
    .ppsoclogin__buttons {
        flex-direction: row;
    }

    .ppsoclogin__button {
        flex: 1;
    }
}
