.m-form{
    background: url("./images/background.jpg");
    background-size: cover;
    padding: 80px;
    color: #212529;
    border-radius: 10px;
}
.m-form__cont{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.m-form__inputs{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.m-form .title{
    color: #212529;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.m-form .form_desc{
    color: #212529;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.m-form  .form .form-group{
    margin-bottom: 0;
}
.m-form a{
    color: #F4B74E;
    text-decoration: underline;
}
.m-form .m-form-footer{
    margin-top: 15px;
}
@media (max-width: 1200px) {
    .m-form{
        padding: 70px 45px;
    }
}
@media (max-width: 767px) {
    .m-form{
        padding: 22px 24px;
        background-position: 16%;
    }
    .m-form .title{
        font-size: 28px;
        line-height: normal;
    }
    .m-form .title,
    .m-form .form_desc{
        text-align: center;
    }
    .m-form__inputs{
        display: grid;
        grid-template-columns: 1fr;
    }
    .m-form-footer .btn{
        width: 100%;
    }
}