/* Social Authentication Styles */
.social-auth {
    max-width: 400px;
    margin: 0 auto;
}

.social-auth-provider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.social-auth-provider img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
}

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

.btn-google img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.social-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.social-divider::before,
.social-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.social-divider::before {
    left: 0;
}

.social-divider::after {
    right: 0;
}

.social-divider span {
    background: #fff;
    padding: 0 15px;
    color: #757575;
    font-size: 14px;
}