.login-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}

.login-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
}

.login-header img {
  width: 120px;
}

.login-header h1 {
  color: #333;
  font-size: 1.5em;
}

.login-input {
  border: 2px solid #333;
  border-radius: 8px;
  color: #333;
  font-size: 1em;
  margin-bottom: 15px;
  max-width: 300px;
  padding: 10px;
  outline: none;
  width: 100%;
}

.btn-login {
  background: #ee665c;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  max-width: 300px;
  padding: 10px;
  width: 100%;
}

.btn-login:disabled {
  background: #eee;
  color: #aaa;
  cursor: auto;
}

footer {
  background: rgb(36, 37, 41);
  display: block;
  margin-top: 20px;
  padding: 20px;
}

.p-footer {
  color: #fff;
  font-size: 1.2em;
  font-weight: 200;
  padding: 10px;
  margin: 0;
  text-align: center;
}