/* Стили для состояния благодарности после отправки формы */
.form--popup.show__thanks .form__body {
    display: none;
}

.form--popup.show__thanks .thanks--content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 40px;
}

.thanks--content {
    display: none;
    flex-direction: column;
    color: #fff;
}

.thanks--content h3 {
    font-size: 36px;
    font-weight: 300;
    line-height: 44px;
    margin-bottom: 20px;
    color: #fff;
}

.thanks--content p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.8;
}

.thanks--content .success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    font-size: 40px;
    color: #4CAF50;
}

.thanks--content .success-icon::before {
    content: "✓";
}

@media (max-width: 576px) {
    .thanks--content h3 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .thanks--content .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}
