.social-providers {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    width: 100%;
}

.social-providers-text {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
    text-align: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-button:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #fff;
}

.social-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-button-text {
    font-size: 15px;
    flex-grow: 1;
    text-align: center;
}

/* Provider-specific styles */
.social-google {
    background-color: #4285F4;
}

.social-facebook {
    background-color: #1877F2;
}

.social-github {
    background-color: #333;
}

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

.social-twitter {
    background-color: #1DA1F2;
}

.social-linkedin {
    background-color: #0077B5;
}

.social-microsoft {
    background-color: #00a4ef;
}

.social-gitlab {
    background-color: #fc6d26;
}

.social-bitbucket {
    background-color: #0052cc;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-yandex {
    display: block;
    padding: 0px;
    width: 280px;
    border-radius: 100px;
}

/* Added divider between credentials and social login */
.kc-form-split {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
}

#kc-form-wrapper {
    width: 100%;
    max-width: 500px;
}

.kc-social-section {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-button {
        width: 100%;
    }
    
    #kc-form-wrapper,
    .kc-social-section {
        max-width: 100%;
    }
} 