.form-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.form-elem {
    width: 500px;
    max-width: 100%;
    min-height: 200px;
    box-shadow: 0 0 10px 1px #33333333;
    padding: 15px;
}
@media (min-width: 576px) {
.form-elem {
    padding: 25px;
}
}
.form-select {
    width: 100%!important;
    max-width: 100%!important;
    margin-bottom: 20px;
    font-size: 16px!important;
}
.form-select.error {
    border-color: red!important;
}
.form-input {
    display: block;
    width: 100%!important;
    max-width: 100%!important;
    margin-bottom: 20px;
    font-size: 16px!important;
}
.form-input.error {
    border-color: red!important;
}
.button-wrapper {
    margin-top: 30px!important;
}
.btn {
    margin-left: auto;
    display: block;
}
.step-wrapper {
    opacity: 0;
    display: none;
    transition: opacity 490ms ease-in-out;
}
.step-wrapper.hide, .step-wrapper.active.hide {
    opacity: 0;
}
.step-wrapper.active {
    display: block;
    opacity: 1;
}
.checkbox-wrapper {
    display: flex;
    gap: 10px;
}
.checkbox-wrapper label, .checkbox-wrapper label a {
    font-size: 14px!important;
    line-height: 1.5!important;
}
.checkbox-wrapper input.error {
    border-color: red!important;
}
.checkbox-wrapper input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    user-select: none;
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    background-color: #FFFFFF;
    flex-shrink: 0;
    position: relative;
}
.checkbox-inner-wrapper {
    position: relative;
    margin-bottom: auto;
}
.checkbox-wrapper input:checked::after {
    content: ' ';
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 7px;
    background-color: transparent;
    border-left: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: translate(-46%, -59%) rotate(-45deg);
}