.text-center {
    text-align: center;
}
.lower {
    text-transform: lowercase;
}
.form-wrapper, form {
    text-align: center;
    padding: 5% 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.form-wrapper input{
    color: black;
}
.w50 {
    width: 50%;
}
.w100 {
    width: 100%;
}
form .confirm {
    margin-top: 1rem;
}
.form-title, .form-wrapper center {
    font-size: 1.8rem;
    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 a {
    color: black;
}
form label {
    font-weight: normal;
    font-size: 13px;
    padding-left: 10px;
    word-break: break-word;
    line-height: 1;
}
form div[class*="row_"],
form div[id^="btn"] {
    width: 32%;
}
form div[class*="row_approval"] {
    order: 2;
    width: 100%;
    text-align: left;
}

form input[type="submit"],
form input[type="button"] {
     font-size: 1.5rem;
     margin: 1.1rem 0;
     border: 0;
     padding: 1rem 3rem;
     color: white;
     font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(180deg, #F56F53 0%, #E26138 100%);
}
footer {
    font-size: .85rem;
    padding: 1rem;
}
footer p {
    padding: 3px;
}
footer a {
    color: inherit !important;
}
@media (max-width: 768px){
    form div[class*="row_"],
    form div[id^="btn"],
    form div[class*="row_approval"] {
        width: 100%;
    }
    form {
        padding: 2rem;
    }
    form h3 {
        font-size: 1.2rem;
    }
}