@import url("/Style/style.css");

.navigation .contact{
    border-bottom: 1px solid rgb(207, 56, 56);
}
.form-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
.form-information .title {
    margin: 1rem auto;
    color: #002768;
    font-size: 18px;
}
.form-information .description {
    margin-bottom: 1.5rem;
    padding: 0 2.5rem;
    text-align: start;
    font-size: 1.1rem;
    font-weight: 200;
}
.divider-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}
.divider-image {
    width: 100%;
}
.form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-section {
    background: rgb(244, 244, 244);
    border-radius: 5px;
    margin: 2rem auto;
}
.form-section input {
    width: 90%;
    height: 30px;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    margin: 0.3rem 1rem;
    transition: 0.5s all;
    border: 0;
}
.form-section textarea {
    width: 90%;
    padding: 10px;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    height: 200px;
    margin: 0.3rem 1rem;
    transition: 1s all;
    border: 0;
}

form input:focus {
    border-radius: 10px;
    
}
textarea:focus {
    border-radius: 15px;
}

.form-section label {
    color: #002768;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    margin: 1rem 0 1rem 1rem;
    padding: 10px auto;
}
.form-section button {
    display: flex;
    justify-content: center;
}
form button {
    margin: 1.5rem auto;
    padding: 10px;
    width: 80%;
    background: #002768;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: 1s all;
    border: 0;
}

form button:hover {
    border-radius: 12px;
    font-weight: 700;
}

.menu-footer .contact {
    border-bottom: 1px solid rgb(207, 56, 56);
}

/*#preloader {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background-color: #FFF;*/
    /* cor do background que vai ocupar o body */
/*    z-index: 999;*/
    /* z-index para jogar para frente e sobrepor tudo */
/*}*/

/*#preloader .inner {*/
/*    position: absolute;*/
/*    top: 50%;*/
    /* centralizar a parte interna do preload (onde fica a animação)*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

/* end: Preloader */

@media screen and (min-width:468px) {
    .form-information .title {
        font-size: 1.5rem;
    }
    .divider-image {
        width: 100%;
        height: 150px;
    }
    .form-information .description {
        font-size: 1rem;
        width: 90%;
    }
    .form-section input {
        height: 50px;
        font-size: 16px;
        margin: 0.3rem 1rem 0.3rem 1.5rem;
    }
    .form-section textarea {
        font-size: 16px;
        height: 200px;
        margin: 0.3rem 1rem 0.3rem 1.5rem;  
    }
    form button {
        font-size: 1rem;
    }
    .form-section label {
        font-size: 1rem;
        font-weight: 600;
        margin: 1rem 0 1rem 1.5rem;
    }
}

@media screen and (min-width:770px) {
    .divider-image {
        width: 100%;
        height: 200px;
    }
    .form-section {
        width: 60%;
    }
}
@media screen and (min-width: 1024px) {
    .form-information .description {
        padding: 0 6.5rem;
    }
}