body{
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(to right, rgb(0, 92, 197),rgb(90, 20, 220));

}
.tela-login{
    background-color: rgba(0, 0,0, 0.9);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 80px;
    border-radius: 15px;
    color: white;


}
input{
    padding: 15px;
    border: none;
    outline: none;
    font-size: 15px;
    border-radius: 10px;

}

.botao{
    background-color: dodgerblue;
    border: none;

    padding: 15px;
    width: 100%;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    
}
.botao:hover{
    background-color: deepskyblue;
    cursor: pointer;
}
