/* Стили для интеграции VKID SDK */

#vkid-oauth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* Применяем стили к основным кнопкам VKID */
.VKIDOAuthList {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Добавим дополнительное оформление для кнопок */
.VKIDOAuthButton {
    max-width: 320px !important;
    width: 100% !important;
    border-radius: 8px !important;
    transition: transform 0.2s ease-in-out !important;
}

.VKIDOAuthButton:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Оформление для блока ошибок */
.vkid-error {
    background-color: var(--bs-danger);
    color: white;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
    text-align: center;
}