/* Изменение стилей системного окна успеха */
.t-form-success-popup__wrapper {
background-color: #ffffff !important; /* Белый фон окна */
border-radius: 10px !important;
box-shadow: 0 5px 25px rgba(0,0,0,0.15) !important;
padding: 30px !important;
}
/* Изменение цвета текста */
.t-form-success-popup__title,
.t-form-success-popup__text {
color: #101010 !important; /* Темный текст */
text-align: center !important;
}
/* Стилизация кнопки закрытия */
.t-form-success-popup__close {
background-color: #DBB260 !important; /* Золотистый фон */
color: #101010 !important; /* Темный текст */
border-radius: 0 !important; /* Без скругления */
padding: 12px 25px !important;
font-weight: bold !important;
text-transform: uppercase !important;
border: none !important;
cursor: pointer !important;
display: block !important;
margin: 20px auto 0 !important;
transition: all 0.3s ease !important;
}
/* Эффект при наведении на кнопку */
.t-form-success-popup__close:hover {
background-color: #c9a056 !important; /* Немного темнее при наведении */
transform: translateY(-2px) !important;
}
/* Дополнительные стили для иконки закрытия (если она есть) */
.t-form-success-popup__close-icon {
display: none !important; /* Скрываем стандартную иконку */
}