html, body {
  margin: 0;
}

body {
  background-color: #f5f5f5;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  margin: 0;
  display: block;
  user-select: none;
  pointer-events: none;
}

#overlay h1 {
  color: white;
}

p {
  font-family: 'Roboto';
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.84);
}

h1 {
  margin: 0;
  padding: 16px;
  font-family: 'Roboto';
  font-weight: bold;
  font-size: 32px;
  color: #0D47A1;
}

h2 {
  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 16px;
  color: #0D47A1;
  text-align: center;
}

h3 {
  margin: 0;
  font-family: 'Roboto';
  font-size: 14px;
  font-weight: 300;
  color: #0D47A1;
  white-space: normal;
  text-align: center;
  width: 90%;
  left: 50%;
  padding-top: 4px;
  transform: translateX(-50%);
  position: absolute;
  display: block;
}

#login-form p {
  padding: 12px;
  margin: 0;
}

major {
  font-family: 'Roboto';
  font-size: 60px;
  line-height: 60px;
  position: absolute;
  z-index: 0;
  opacity: 0.8;
  color: #0d47a1;
  user-select: none;
  font-weight: 700;
  top: -70px;
  white-space: pre;
}

#login-form {
  height: 85%;
}

card {
  background-color: white;
  display: block;
  position: relative;
  border-radius: 4px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.16);
}

card.center {
  width: 360px;
  height: 220px;
  margin: auto;
  top: 50vh;
  transform: translateY(-50%);
}

#login-form>input.submit {
  bottom: 0;
  position: absolute;
  width: 100%;
  border-radius: 0px 0px 4px 4px;
  height: 18%;
  font-size: 16px;
  background-color: #0d47a1;
  color: white;
  padding: 0;
  margin: 0;
  border: 0;
}

.submit:disabled {
  opacity: 0.6;
  cursor: progress;
}

input {
  outline: white;
  border: rgba(0, 0, 0, 0.5) 1px solid;
  border-radius: 4px;
  width: 90%;
  margin: auto;
  display: block;
  height: 20%;
  padding: 4px;
  font-size: 12px;
  margin-bottom: 2%;
}