

.form-submit {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}
.form-submit__btn {
    min-width: 177px;
    padding: 16px 32px;
    background: #1655a3;
    border: none;
    box-shadow: none;
    color: #ffffff;
    text-transform: uppercase;
    font-family: "Futura PT";
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s linear;
}
.form-submit__btn:hover {
    background: #297be1;
}

.form-submit__btn_mts {
    width: 177px;
    height: 52px;
    border: none;
    cursor: pointer;
    color: #fafafa;
    background: #1d2023;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-family: "MTS Wide", sans-serif;
    transition: 0.3s linear;
}
.form-submit__btn_mts span {
    margin-right: 5px;
}
.form-submit__btn_mts:hover {
    background: rgb(51, 51, 51);
}

@media (max-width: 600px) {
    .form-step {
        max-width: 100%;
    }
    .registration-form-socialservices {
        width: 100%;
    }
    .form-submit {
        flex-direction: column;
        gap: 32px;
    }
    .form-submit__btn {
        width: 100%;
    }
    .form-submit__btn_mts {
        width: 100%;
    }
}