<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-usluga .wrap_input{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px
}
.form-usluga .wrap_input input.error{
    border: 1px solid red;
}
.form-usluga .politic{
    text-align: center;
}
.wrap_input &gt; * {
    width: calc(33% - 40px);
}
#result-send{
    color: green;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.form-usluga input[name="FIO"]{
    display: none;
}

@media (max-width: 600px){
    .wrap_input &gt; * {
        width: 100%;
    }
    .wrap_input{
        flex-direction: column;
    }
    .wrap_input input{
        height: 40px;
        margin-bottom: 10px;
    }

}</pre></body></html>