.contato {
    display: flex;
    width: 100vw;
    height: calc(100vh + 150px);
}

.contato-titulo {
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
}

.esquerda-col {
    width: 45vw;
    height: 100%;
    background-image: url("../../img/eloise\ 2\ final.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.direita-col {
    width: 40vw;
    height: 100vh;
    padding: 7rem 5.5rem 15rem 5.5rem;
    display: block;
}

.contato-descricao {
    font-size: 1.1rem;
    letter-spacing: 0.01rem;
    width: 40vw;
    margin: 0.25rem 0;
}


/* Início de formulário */

form {
    font-family: 'Poppins', sans-serif;
    width: 35rem;
    position: relative;
    margin-top: 1rem;
    padding: 1rem 0;
}

fieldset {
    border: 0;
}

input,
select,
textarea {
    border-radius: 2px;
    width: 25vw;

    display: block;
}

label {
    padding-top: 1em;
    text-transform: uppercase;
    font-size: 1rem;
}

.campo {
    padding-bottom: 2px;
}

.campo label {
    margin-bottom: 0.2em;
    display: block;
}

fieldset .campo {
    float: left;
    margin-right: 1em;
}

.campo input[type="text"],
.campo select,
.campo textarea {
    background: #d8d8d8;
    border: none;
    border-bottom: 1px solid #000;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    outline: none;
}

textarea {
    resize: none;
    height: 15em;
    width: 36em;
}

.campo select option {
    padding-right: 1em;

}

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    background-color: #e9e9e9;
}

.btn-enviar {
    display: block;
    border-radius: 2px;
    font-size: 1.2em;
    background: rgb(32, 24, 14);
    border: 0;
    margin-bottom: 1em;
    color: var(--background);
    padding: 0.3em 1.7em;
    margin: 30px 0 100px 65px;

    transform: translate(-50%, -50%);
}

.btn-enviar:hover {
    background: var(--laranja-claro);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

/*Fim do formulário */