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

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

}

.formulario{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F4F4F4;
    gap: 38px;
    width: 270px;
    height: 200px;    
}

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

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

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

    border: none;

}

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

.botaoRegistrar{
    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%;
}

.emailInput, .senhaInput{
    position: relative;
}

input:focus{
    outline: none;
}

.termosDeUso {
    width: 90%;
    position: relative;
    font-size: 12px;
    line-height: 24px;
    vertical-align: middle;
    top: 30px;
}

.logo img{
    position: absolute;
    width: 80px;
    height: 83px;
    top: 26px;
    left: 140px;

}