.record {
    padding: 40px 20px;
    background-color: #EFF0F0;
}

.record__text {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.7);
}

.record__form {
    display: flex;
    /*row-gap: 16px;*/
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 719px) {
    .record__form {
        display: grid;
        justify-content: normal;
    }
}

@media screen and (min-width: 720px) {
    .record {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (min-width: 1280px) {

    .record {
        text-align: center;
        padding-left: 160px;
        padding-right: 160px;
    }

    .record__text {
        font-size: 17px;
        line-height: 1.41;
    }

    .record__form {
        margin-bottom: 30px;
        /*grid-template-columns: 480px 150px;
        justify-content: center;
        column-gap: 16px;*/
    }
}