.formulario
{
    padding: 12px;
    background-color: #4d0d00;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;

    width: 400px;
}
.formulario .texto_formulario
{
    font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;

    background-color: antiquewhite;

    width: 300px;
    height: 40px;
}
.formulario textarea
{
    font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: larger;

    background-color: bisque;

    height: 160px;
    width: 350px;

    resize: none;
}
.formulario .envio
{
    font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: larger;
    font-weight: 500;

    width: 80px;
    height: 40px;

    background-color:gainsboro;
    border: 1px solid gray;
    border-radius: 4px;

    cursor: pointer;
    transition: 0.2s;
}
.formulario .envio:hover
{
    filter: brightness(70%);
}
.validacion_mail
{
    text-align: center;

    color: azure;
    padding: 0px !important;
    margin-bottom: 2px;
    margin-top: 16px !important;
}
.formulario h3
{
    margin-top: 2px;
    color: azure;
    font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 100;
}