/* Fayuc Social Login - Premium Standardized UI */
.social-divider { 
    display: flex; 
    align-items: center; 
    text-align: center; 
    margin: 20px 0; 
    color: var(--text-muted); 
    font-size: 0.8rem; 
    font-weight: 500;
}
.social-divider::before, .social-divider::after { 
    content: ''; 
    flex: 1; 
    border-bottom: 1px solid var(--glass-border); 
}
.social-divider:not(:empty)::before { margin-right: 1.5em; }
.social-divider:not(:empty)::after { margin-left: 1.5em; }

.social-auth-container { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 15px; 
    margin: 15px 0; 
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.social-btn:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.social-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

.social-btn .line-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 18px;
    padding: 0 6px;
    border-radius: 10px;
    background: #00B900;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
}

/* Specific colors on hover */
.social-btn.google:hover { border-color: #4285F4; }
.social-btn.facebook:hover { border-color: #1877F2; }
.social-btn.line:hover { border-color: #00B900; }

/* Mobile Tweak - Finger Friendly */
@media (max-width: 768px) {
    .social-auth-container { gap: 15px; }
    .social-btn {
        width: 46px;
        height: 46px;
    }
    .social-btn svg {
        width: 24px;
        height: 24px;
    }
    .social-btn .line-badge {
        min-width: 30px;
        height: 19px;
        font-size: 9px;
    }
}
