
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.esquerda{
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.title{
    font-weight: bold;
    font-size: 4rem;
}
.subtitle{
    font-weight: 400;
    font-size: 1.2rem;
}
.direita{
    gap: 1.5rem;
}
.ad{
    background-color: hsl(248, 32%, 49%);
    padding: 1.5rem;
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0px 5px hsla(0, 0%, 0%, 0.242)
}
.adMsg{
    margin: auto;
    border: 0;
    color: white;
    font-size: 1.2rem;
    font-weight: lighter;
}
.adMsg span{
    font-weight: bold;
}
.formulario{
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    box-shadow: 0px 5px hsla(0, 0%, 0%, 0.242)
}
.form{
    width: 100%;
    height: 100%;
    gap: 1rem;
}
.inputs{
    gap: 1rem;
}
label{
    display: flex;
    text-align: end;
    flex-wrap: nowrap;
}
input{
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(128, 128, 128, 0.399);
}
.botao{
    border: none;
    padding: 1rem;
    background-color: hsl(154, 59%, 51%);
    border-radius: 1rem;
    color: white;
    font-weight: bold;
    letter-spacing: 0.1rem;
    box-shadow: 0px 5px hsl(154, 57%, 41%)
}
.form p{
    color: gray;
}
.terms{
    text-decoration: none;
    color: hsl(0, 100%, 74%);
    font-weight: bold;
}
.msgError{
    color: red;
    text-align: end;
}
@media(min-width: 991px){
    .body{
        height: 100vh;
        justify-content: center;
        align-items: center;
        background-color: hsl(0, 100%, 74%) ;
        background-image: url(./images/bg-intro-desktop.png);
    }
}
@media (max-width: 990px) {
    .body{
        margin-top: 3rem;
        margin-bottom: 3rem;
        justify-content: center;
        align-items: center;
        background-color: hsl(0, 100%, 74%) ;
        background-image: url(./images/bg-intro-mobile.png);
    }
    .title{
        font-size: 1.5rem;
    }
    .subtitle{
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}