@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
body{
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(235, 18%, 26%);
}
.corpo{
    display: flex;
    height: 60%;
    width: 54%;
    margin: auto;
    background-color: white;
    border-radius: 15px;
}
.secao{
    padding: 15px 0px;
    width: 50%;
    flex-direction: column;
    display: flex;
    align-items: center;
}
h1{
    font-size: 3rem;
    margin: 30px 20px 25px 20px; 
    color: hsl(234, 29%, 20%);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.secao .texto{
    text-align: start;
    padding-left: 2%;
    width: 85%;
    font-size: 14px;
    color: hsl(234, 29%, 20%);
}
.secao img{
    position: relative;
    left: 8%;
    width: 85%;
}

.email{
    width: 80%;
    display: flex;
    flex-direction: column;
    color: hsl(234, 29%, 20%);
}
.email .textoEmail{
    margin-bottom: 10px;
    font-weight: 700;
}
.email .textoEmail span{
    display: none;
    position: relative;
    left: 35%;
}
.email .textoEmail .aparece{
    display: inline;
}
.email .campo{
    height: 40px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid hsl(231, 7%, 60%);
}
.email .erro{
    height: 40px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid hsl(4, 100%, 67%);
    color: hsl(4, 100%, 67%);
    background-color: rgba(255, 98, 87, 0.2);
}
.email .campo:hover{
    cursor: pointer;
}
.botao{
    background-color: hsl(234, 29%, 20%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    height: 40px;
    border: none;
    border-radius: 10px;
}
.botao:hover{
    cursor: pointer;
    background-color: hsl(4, 100%, 67%);
}

/*Responsivo*/
@media (max-width: 768px){
    .corpo{
        flex-direction: column-reverse;
        width: 100%;
        border-radius: 0;
    }
    .secao{
       width: 100%;
       padding: 0;
    }
    .secaoTexto{
        padding-bottom: 15px;
    }
    .imagemToda{
        text-align: center;
        width: 100%;
        height: 300px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .secao .imagem{
        width: 100%;
        max-height: 100%;
        left: 0;
        border-radius: 10px;
    }   
}