.text-center {
    text-align: center;
}
.lower {
    text-transform: lowercase;
}

form,
.form-wrapper {
    text-align: center;
}
.form-bordered {
    color: #000000;
    background-color: #fcfcfc;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 2px solid #0985FF;
    border-color: #0985FF !important;
    border-radius: 5px;
}
.form-wrapper input{
    color: black;
}
.w50 {
    width: 50%;
}
.w100 {
    width: 100%;
}
form .confirm {
    margin-top: 1rem;
}
.form-title, .form-wrapper center {
    color: black;
    margin-bottom: 1rem;
    text-align: center;
}
form input[type="text"],
form input[type="tel"],
form input[type="email"]
{
    width: -webkit-fill-available;
    margin: 0.8rem 0;
    padding: 0.8rem;
    border: 1px solid grey;
    border-radius: 10px;
}
form input[type="button"],
form input[type="submit"] {
    font-size: 1.2rem;
    margin: 1.1rem 0;
    border: 0;
    padding: .8rem 1.5rem;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    background: #fc6b03; /*цвет кнопки*/
}
@media (max-width: 768px){
    form h3 {
        font-size: 1.2rem;
    }
}