/* Стили для кнопок социального входа */
.wsl-social-login {
    margin: 15px 0 20px;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.wsl-title {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.wsl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wsl-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wsl-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wsl-button-vkontakte {
    background: #4a76a8;
}
.wsl-button-vkontakte:hover {
    background: #3b6390;
}

.wsl-button-yandex {
    background: #fc3f1d;
}
.wsl-button-yandex:hover {
    background: #d63214;
}

.wsl-button-google {
    background: #4285f4;
}
.wsl-button-google:hover {
    background: #3367d6;
}

.wsl-button-mailru {
    background: #168de2;
}
.wsl-button-mailru:hover {
    background: #1075c0;
}

.wsl-message {
    margin-top: 12px;
    font-size: 14px;
}

.wsl-message.success {
    color: #166534;
}

.wsl-message.error {
    color: #991b1b;
}

/* Адаптация для мобильных */
@media (max-width: 480px) {
    .wsl-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .wsl-button {
        justify-content: center;
    }
}