
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;       
    padding: 0;
    box-sizing: border-box;
  
}
body{
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  min-height: 100vh;
}
.formulario{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #1a2514de;

}
.campo-formulario{
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.599);
    border-radius: 10px;
    border: #fff 1px solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    width: 400px;
    height: 250px;
}
.imagem{
    display: block;
    margin: auto;
}

.campo input{ 
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    color: #fff;
    margin: 0.5em;
    padding: 1em;
}
.campo input:hover{
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255,255,255,0.5);
}
.lembrar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5em;
}
.btn{
    background-color: #202D11;
    color: #fff;
    padding: .5em;
    border-radius: 10px;
    border: none;
    margin: 0.5em;
    cursor: pointer;
}

.btn:hover{
    background-color: #2a3b15;
   padding: .6em;
}