.social-buttons {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.g_id_signin {
    width: 100% !important;
}

.social-auth-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 5px;
    width: 100%;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: var(--bg-thirdly);
    color: var(--text-primary);
}

.btn-social.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.btn-social:hover {
    opacity: 0.8;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #888;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.auth-divider span {
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-social i {
    font-size: 18px;
}