/**************/
/* Login Form */
/**************/

.login-form {
  width: 600px;
  height: 300px;
  margin: 100px auto 0 auto;
  background-color: white;
  border: 5px var(--pokemon-blue) solid;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.enter-username,
.enter-password {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
}

.login-form label {
  margin-right: 15px;
  width: 100px;
  font-size: 1.5rem;
  text-align: right;
}

.enter-username input,
.enter-password input {
  font-family: "Asap Condensed", sans-serif;
  font-size: 1.5rem;
  padding: 8px;
  border-radius: 10px;
  width: 300px;
}

.login-form > input {
  font-family: "Asap Condensed", sans-serif;
  background-color: var(--pokemon-blue);
  padding: 10px;
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}
