/* Login+ — social buttons (brand-compliant, no external assets) */

.lp-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 6px;
    width: 100%;
    clear: both;
}

.lp-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7a7f87;
    font-size: 13px;
    margin: 2px 0 4px;
}
.lp-divider::before,
.lp-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dcdfe5;
}

.lp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid #dadce0;
    background: #fff;
    color: #3c4043 !important;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(20, 24, 40, 0.06);
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    box-sizing: border-box;
}
.lp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 24, 40, 0.12);
    background: #fafbfc;
}
.lp-btn:focus {
    outline: 2px solid #4f6df5;
    outline-offset: 2px;
}
.lp-ico { flex: 0 0 auto; }

/* Brand variants */
.lp-btn-facebook {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff !important;
}
.lp-btn-facebook:hover { background: #166fe0; }
.lp-btn-test {
    border-style: dashed;
    border-color: #7c5bff;
    color: #5b3df0 !important;
}

/* Neutral/light style override */
.lp-style-light .lp-btn,
.lp-style-light .lp-btn-facebook {
    background: #fff;
    border-color: #dadce0;
    color: #3c4043 !important;
}
.lp-style-light .lp-btn-facebook .lp-ico { color: #1877F2; }

/* Checkout box */
.lp-checkout-box {
    border: 1px solid #e2e5ea;
    border-radius: 12px;
    padding: 16px 18px 10px;
    margin-bottom: 22px;
    background: #fafbfd;
}
.lp-checkout-title {
    margin: 0 0 4px;
    font-weight: 600;
    font-size: 14.5px;
}

/* wp-login.php tweaks */
body.login .lp-buttons { margin-top: 14px; }
body.login form .lp-buttons { margin-bottom: 0; }

@media (min-width: 560px) {
    .lp-buttons.lp-row { flex-direction: row; }
    .lp-buttons.lp-row .lp-btn { flex: 1; }
}
