*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(235, 18%, 26%)
 }
 .img-mobile{
    display: none;
 }
 .cadastro{
    justify-content: space-between;
    padding: 2rem;
    background-color: white;
    border-radius: 2rem;
    width: 100%
 }
 .esquerda{
    gap: 2rem;
 }
 .textos{
    gap: 0.5rem;
 }
h1{
    color: hsl(234, 29%, 20%);
    font-weight: bold;
    font-size: 3rem;
}
p{
    font-size: 1.1rem;
}
.checks{
    align-items: center;
    display: flex;
    gap: 1rem;
}
span{
    font-size: 1.1rem;
}
.form{
    gap: 1.5rem;
}
label{
    color : hsl(234, 29%, 20%);
    font-weight: bold;
    font-size: 1rem;
}
input{
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid gray;
}
.botao{
    border: 0;
    border-radius: 0.5rem;
    padding: 0.9rem;
    background-color: hsl(234, 29%, 20%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}
.botao:hover{
    color: rgb(190, 190, 190);
    background-color: hsl(234, 51%, 11%);
}
.direita{
    display: flex;
    justify-content: center;
}
.erro{
    border: 1px solid red;
    color: red;
}
.erro::placeholder{
    color: red;
}
.errorEmail{
    font-weight: bold;
    color: red;
}

.feedback{
    display: flex;
    justify-content: center;
}
.feedback-card{
    padding: 2rem;
    width: 500px;
}
.feedEmail{
    font-weight: bold;
}
.hidden{
    display: none !important;
}

@media (max-width: 500px){
    .img-desktop{
        display: none;
    }
    .img-mobile{
        display: flex;
        justify-content: center;
        width: 100%;
    }
}