@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans:400,500,700');

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  font-family: 'IBM Plex Sans', sans-serif;
}

body {
  background: #222f35;
}

#login-form {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#login-form form {
  text-align: center;
  max-width: 250px;
}

#login-form #logo{
  margin-bottom: 55px;
}

#login-form input{
  display: block;
  margin-bottom: 15px;
  width: 234px;
  background-color: #2c3c43;
  border: none;
  border-radius: 3px;
  padding: 10px 13px;
  color: white;
  font-weight: 500;
}

#login-form input::placeholder {
  color: #5a7e91;
  font-family: 'IBM Plex Sans', sans-serif;
}

#login-form button {
  margin-top: 10px;
  border-radius: 3px;
  border: none;
  padding: 13px;
  min-width: 140px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.75rem;
  color: white;
  background-image: linear-gradient(to right, #00afe8, #00c9d3);
  cursor: pointer;
}

#login-form .error {
  color: #d9534f;
  margin: 20px 0;
}