/* auth/social_login.html */
.social-login-section {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.75rem 1rem;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

.social-btn i {
    font-size: 1.2rem;
}

.btn-google {
    background: #db4437;
    border-color: #db4437;
}

.btn-google:hover {
    background: #c23321;
    border-color: #c23321;
}

.btn-facebook {
    background: #1877f2;
    border-color: #1877f2;
}

.btn-facebook:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.btn-twitter {
    background: #1da1f2;
    border-color: #1da1f2;
}

.btn-twitter:hover {
    background: #1a91da;
    border-color: #1a91da;
}

[data-theme="dark"] .social-login-section {
    border-top-color: #495057;
    border-bottom-color: #495057;
}

[data-theme="dark"] .text-muted {
    color: #adb5bd !important;
}

@keyframes social-login-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.social-btn .spin {
    animation: social-login-spin 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .social-btn {
        transition: none;
    }

    .social-btn:hover {
        transform: none;
        box-shadow: none;
    }

    .social-btn .spin {
        animation: none;
    }
}
