@import url('https://fonts.googleapis.com/css?family=Inter:300,400,500,600');

body {
  background: var(--background);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}

.form {
  position: relative;
  z-index: 1;
  background: #ffffff;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05), 0 5px 5px 0 rgba(0, 0, 0, 0.02);
  border-radius: 8px;
}

.form input {
  font-family: 'Inter', sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 4px;
}

.form button {
  font-family: 'Inter', sans-serif;
  outline: 0;
  background: var(--brand-green);
  width: 100%;
  border: 1px solid var(--brand-green);
  padding: 15px;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
}

.form button:hover,
.form button:focus {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}

.form .message {
  margin: 15px 0 0;
  color: #444444;
  font-size: 12px;
}

.form .message a {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 500;
}

.form .register-form {
  display: none;
}

.hidden {
  display: none;
}