/*

                    ##################################################

                                    Formatação desktop

                    ###################################################

*/

body{
    font-family: 'PT Sans';
}

.titulo_form{

    font-size: 40px;
    font-weight: bold;

}

.espaco_form{

    width: 90%;
    margin-top:50px;
    margin-bottom: 90px;
    margin-left: 45px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px #000010;

}

.form_group{

    width: 100%;
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;

}

.form_group input,
.form_group textarea{

    width: 100%;
    padding: 5px;
    font-size: 18px;
    border: 1px solid grey;
    margin-top: 5px;
}

textarea{

    resize: vertical;

}

button[type = "submit"]{

    width: 100%;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 24px;
    border-radius: 8px;
    font-family: 'PT sans';
    background-color: #6d706f;
    color: white;
    margin-top: 30px;
}

button:hover{
    cursor: pointer;
    transition: 0.3s ease;
}

.botao_submit:hover{

    background-color: blue;
    transition: 0.3s ease;

}

#status{

    margin-top: 50px;
    margin-bottom: 50px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    height:50px;
    font-size: 24px;
}

#status.success{

    background-color: green;
    color: white;
    animation: status 8s ease forwards;

}

#status.error{

    background-color: red;
    color: white;
    animation: status 8s ease forwards;

}

@keyframes status{

    0%{

        opacity: 1;
        pointer-events: all;

    }


    90%{

        opacity: 1;
        pointer-events: all;

    }

    100%{

        opacity: 0;
        pointer-events: none;

    }


}