/* Social Login Buttons */
.social-login-section {
    margin-top: 12px;
    padding-top: 0;
}

.social-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.4;
}

.btn-social:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: #1e293b;
}

.btn-social:active {
    transform: scale(0.99);
}

.btn-social svg,
.btn-social img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Google specific */
.btn-social-google {
    border-color: #dadce0;
}

.btn-social-google:hover {
    border-color: #bdc1c6;
    background: #f8f9fa;
}

/* Apple specific */
.btn-social-apple {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-social-apple:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #333;
}

/* WeChat specific */
.btn-social-wechat {
    background: #07c160;
    color: #fff;
    border-color: #07c160;
}

.btn-social-wechat:hover {
    background: #06ae56;
    color: #fff;
    border-color: #06ae56;
}

/* Responsive */
@media (max-width: 480px) {
    .btn-social {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}
