*{
    margin: 0;
    box-sizing: border-box;
}

main{
    width: 100%;
    height: 100vh;
    background-image: url(imga/back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.formulario{
    width: 100%;
    height: 100%;

}

form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-49%, -49%);
    background-color: rgba(31, 42, 68, 0.726);
    width: 500px;
    height: 230px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.726);
}

.formulario__titulo{
    width: 100%;
    height: 50px;
    padding: 10px;
}

.formulario__titulo > h2{
    font-size: 2rem;
    color: white;
}

.form__login{
    width: 100%;
}
    
.formulario__{
    padding: 20px;
}

.formulario__ > label{
    font-size: 1.2rem;
    color: white;
}

.buton{
    display: block;
    width: 100px;
    height: 30px;
    background: white;
    margin: 20px auto;
    cursor: pointer;
}

.buton:hover{
    background-color: rgba(159, 112, 40, 1);
    color: white;
}