html, body, #app {
  background-color: #1e1e1e;
  color: white;
  font-size: 16px;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;
}

[v-cloak] {
  display: none;
}

h1 {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
  color: pink;
}

.page-title {
  margin-top: 0;
}

input[type=text],input[type=email] {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  font-family: 'Roboto Slab', serif;
}

input[type=checkbox] {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

textarea {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  font-family: 'Roboto Slab', serif;
}

.std-container {
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
}

.std-container--centered {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.std-page {
  width: 100%;
  max-width: 32rem;
}

.login-footer {
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.busy-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000C0;
}

.busy-img {
  font-size: 5rem;
  animation: 0.8s linear infinite roundround;
}

@keyframes roundround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}