body{
    background-color: #181B24;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 100vh;
    gap: 21px;
}

.boxCadastro{
    background-color: #F4F4F4;
    border-radius: 18px;
    width: 90%;
    max-width: 450px;
    height: 78%;
    @media (orientation: landscape) {
        height: 74%;
    };

}

.formulario{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F4F4F4;
    gap: 27px;
    width: 270px;
    height: 500px;    
    margin-top: 24px;
}

.textContainer{
    font-family: Inter;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;    
}

.botaoCadastro{
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #105F74;
    color: #FFFFFF;
    
    width: 80%;
    height: 8.5%;
    border-radius: 8px;
    gap: 10px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
    
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;

    border: none;
}

.textContainer h1{
    color: #222222;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 20px;
    line-height: 100%;
    
}

.botaoLogin{
    color: #105F74;
    font-family: Inter;
    font-weight: bold;
    line-height: 24px;
    text-decoration: none;

}

label {
    position: absolute;
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    z-index: 10;
    background-color: #F4F4F4;
    padding: 4px;
    top: 0px;
    left: 6px;
    transform: translateY(-50%);
}

input{
    width: 250px;
    height: 36px;
    border-radius: 6px;
    border-width: 1px;
    background-color: #F4F4F4;
    padding-left: 12px;
}

input::placeholder{
    font-family: Inter;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;

}

.nameInput, .emailInput, .dataNascimentoInput, 
.senhaInput, .confirmarSenhaInput {
    position: relative;
}

input:focus{
    outline: none;
}

.termosDeUsoInput input{
    margin: 0;
    width: auto;
}

.termosDeUsoInput label{
    position: static;
    vertical-align: 1.1em;
}

.logo img{
    width: 80px;

}