* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body{
    height: 100vh;
    margin: 0;
    background: #e8e9c9;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: 'roboto',sans-serif;
}
h1{
    font-size: 30px;
    padding: 10px;
    color: white;
    font-weight: bold;
}

.container{
  background-color: #85bb65;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.400);
  padding: 100px;
}

form {
    margin-top: 20px;

}

input,
button{
    width: 100%;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
}



input{
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid #3e3e3c;
    padding: 0 15px;
    border: none;
    background-color: white;
}

p{
    margin-bottom: 5px;
    font-weight: bold;  
}

button{
    margin-top: 25px;
    margin-bottom: 25px;
    background: #38761d;
    cursor: pointer;
    font-weight: bold;
    color: white;
}
button:hover{
    transition: 0.1s;
    background: #e8e9c9;
    color: #38761d;

}
.resultado{
    height: 40px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    
}