
.contato{
    padding: 80px 0;
}

form{
    padding: 80px 5%;
    display: flex;
    gap: 90px;
}

form > .form-input p{
    margin-bottom: 40px;
    color: #5f5f5f;
}

form .input, form textarea{
    width: 100%;
    margin-bottom: 20px;
    outline: 0;
    border: 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px #0000001c;
    padding: 10px 10px;
    line-height: 30px;
}

form .input{
    display: block;
}

form textarea{
    height: 120px;
    resize: none;
}

form .btn-enviar{
    width: 100%;
    text-align: right;
}

form .btn-enviar input[type=submit]{
    width: 140px;
    height: 50px;
    border-radius: 10px;
    border: 0;
    background-color: #001ac4;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: .2s;
}

form .btn-enviar input[type=submit]:hover{
    transform: scale(.9);
}

form .form-option h3{
    font-size: 28px;
    margin-bottom: 20px;
}

form .form-option h4{
    color: #001ac4;
    font-size: 24px;
    margin-bottom: 20px;
}

form .form-option p{
    font-size: 20px;
    margin-bottom: 20px;
}

form .form-option p i{
    font-size: 24px;
    margin-right: 15px;
    color: #001ac4;
}

.form-wrap{
    position: relative;
}

label{
    display: block;
    padding: 15px;
    font-size: 14px;
    margin-bottom: 20px;
    color: #757575;
    background-color: #fff;
    width: 100%;
    height: 50px;
    box-shadow: 0px 0px 10px #0000001c;
    border-radius: 8px;
}

label span:nth-of-type(2){
    color: #000;
    background-color: #001ac4;
    font-size: 20px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.input-file{
    display: none;
}

@media screen and (max-width: 980px){
    form{
        flex-direction: column;
        padding: 30px 10%;
    }

    section.contato{
        margin-top: 50px;
    }
}