body{
    background: url(../img/bg-repeat.jpg);
    background-repeat: repeat-x;
    background-size: contain;
    display: flex;
    justify-content: center;

}
.container{
    display: flex;
    width: 80%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.conteudo{
    width: 320px;
    margin: 60px

}
.conteudo h1{
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 10px;
}
.conteudo p{
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
form {
    display: flex;
    background-color: #FFF;
    max-width: 340px;
    max-height: 380px;
    flex-shrink: 0;
    flex-direction: column;
    padding: 20px;
}
.input-group{
    display: flex;
    flex-direction: column;
    padding-bottom: 11px;
}
.input-group input{
    width: 298.013px;
    height: 35.11px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 1px solid #000;
    background: #FFF;
}
.input-group input:placeholder-shown{
    color: rgba(255, 255, 255, 0.226);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 10px;
    flex-shrink: 0;
}
.input-group textarea{
    border: 1px solid #000;
    border-radius: 5px;
    flex-shrink: 0;
}
.input-group textarea:placeholder-shown{
    color: #A8A8A8;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 8px 10px;
}
small.erro{
    visibility: hidden;
    color: #F52E2E;
    font-family: 'Roboto', sans-serif;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
form p{
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
form button{
    flex-shrink: 0;
    background-color: #3CCC87;
    color: #FFF;
    width: 298.013px;
    height: 41.129px;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
}

/* erro e acertos */
.input-group.correct input{
    border: 1px solid #00C22B;
}
.input-group.correct textarea{
    border: 1px solid #00C22B;

}
.input-group.error input{
    border: 1px solid #F52E2E;
}
.input-group.error textarea{
    border: 1px solid #F52E2E;
}
small{
    visibility: visible;
}