@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.conteiner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.painel-login{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    height: 600px;
    width: 500px;
    border-radius: 60px;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 15px #8a8585;
}
form{
   text-align: center;
}

body{
    background-color: rgb(131, 175, 175);
    font-family: 'Open Sans', sans-serif;
}
.user-input{
    margin: 10px;
    width: 400px;
    height: 50px;
    border-radius: 5px;
    font-size: 20px;
    padding: 12px 16px;
    color: rgb(138, 138, 138);
}
.registro{
    font-size: 17px;
    margin: 20px;
    
}
.titulo-login{
    color: #000000;
    text-align: center;
    font-size: 50px;
}
.detalhe-login{
    padding: 0 80px;
    text-align: center;
    margin: 20px;
    font-size: 20px;
    
}
.btn{
    width: 400px;
    height: 50px;
    margin: 10px;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;   

}
.btn:hover{
    background-color: darkcyan;
    color: white;

}