@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Open+Sans:wght@400;700&display=swap');


body {
  background-color: rgba(241, 241, 241, 0.831);
  font-family: 'Luckiest Guy', cursive;
}

.login-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 80vh;
  justify-content: center;
}

.login {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
}

.login img {
  width: 200px;
}


h1 {
  color: rgba(0, 0, 0, 0.831);
  font-size: 40px;
  text-align: center;
  padding: 20px 0 0 0;
}

.login_input {
  font-family: 'Open Sans', sans-serif;
  border: 2px solid #333;
  border-radius: 8px;
  color: #333;
  font-size: 1em;
  margin-bottom: 15px;
  max-width: 300px;
  padding: 15px;
  width: 100%;
}

.login_button {
  background-color: #eea740;
  border: 4px solid #d89127;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  font-size: 15px;
  max-width: 300px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
}