/* Стили для блока ошибок форм */
.contacts-form-error {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.contacts-form-error.is-visible {
    display: block;
}

.contacts-form-error__icon {
    margin: 0 auto 30px;
    width: 60px;
    height: 60px;
    animation: shake 0.5s;
}

.contacts-form-error__text {
    font-size: 18px;
    line-height: 1.5;
    color: white;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Анимация появления ошибки */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
    .contacts-form-error {
        padding: 30px 15px;
    }

    .contacts-form-error__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .contacts-form-error__text {
        font-size: 16px;
        margin-bottom: 20px;
    }
}