/* Social Login Buttons Styling */

.social-login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.social-login-divider::before,
.social-login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.social-login-divider span {
    padding: 0 10px;
    color: #888;
    font-size: 14px;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.btn-social i {
    margin-right: 10px;
    font-size: 18px;
}

.btn-google {
    background-color: #DB4437;
    border: 1px solid #DB4437;
}

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

.btn-facebook {
    background-color: #4267B2;
    border: 1px solid #4267B2;
}

.btn-facebook:hover {
    background-color: #365899;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .btn-social {
        font-size: 14px;
        padding: 8px;
    }
    
    .btn-social i {
        font-size: 16px;
    }
}
