@charset "utf-8";

main#contact {
    width: 100vw;
    height: 100vh;

    text-align: center;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

main#contact > section > form {
    /*border: 1px solid green;*/
    width: 500px;
    height: 300px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
}

main#contact > section > form > div {
    width: 500px;

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

main#contact > section > form > div > input[type="email"], main#contact > section > form > div > textarea {
    width: 450px;
    padding: 8px;
    border: 0.5px solid var(--cor4);
    border-radius: 5px;
}

label {
}
