@media all {
    .contact-form__confirm {
        line-height: 1.6;
        padding-top: 10px;
    }

    .contact-form__buttons {
        display: flex;
        flex-direction: row-reverse;
        gap: 20px;
        justify-content: center;
    }

    .btn-back {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #FFF;
        color: #1D3994;
        border: 1px solid #1D3994;
        padding: 20px 80px;
        font-size: 1.6rem;
        font-weight: 700;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 240px;
    }

    .btn-back:hover:not(:disabled) {
        background-color: #1D3994;
        color: #FFF;
    }

    .contact-body__thanks {
        line-height: 1.6;
        margin-bottom: 50px;
        text-align: center;
    }
    .contact-body__thanks-button {
        text-align: center;
    }
}

@media screen and (max-width:800px) {
    .contact-form__confirm {
        padding-top: 0;
    }

    .contact-form__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn-back {
        width: 100%;
        padding: 20px 0;
        box-sizing: border-box;
    }
}