/**
 * TruyenHD Social Login CSS
 */

.truyenhd-social-login-buttons {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.truyenhd-social-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
    width: 100%;
}

.truyenhd-social-login-button:hover {
    opacity: 0.9;
    color: #fff;
}

.truyenhd-social-login-button i {
    margin-right: 10px;
    font-size: 18px;
}

.truyenhd-social-login-button.facebook {
    background-color: #3b5998;
}

.truyenhd-social-login-button.google {
    background-color: #db4437;
}

.truyenhd-social-login-button.apple {
    background-color: #000;
}

.truyenhd-social-login-button.zalo {
    background-color: #0068ff;
}

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

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

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

@media (max-width: 768px) {
    .truyenhd-social-login-buttons {
        gap: 8px;
    }
    
    .truyenhd-social-login-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}
