*,
*::after,
*::before {
  box-sizing: border-box;
}

html,
body {
  background-color: #f7f9fb;
  height: 100%;
  width: 100%;
}

#app {
  font-size: 14px;
  height: 100%;
  width: 100%;
}

#app .brand {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: 40px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
  position: relative;
  z-index: 1;
}

#app .brand img {
  width: 100%;
}

#app .card {
  border-color: transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}

#app .card .card-title {
  margin-bottom: 30px;
}

#app .form-group label {
  width: 100%;
}

#app .footer {
  margin: 40px 0;
  color: #888;
  text-align: center;
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  #app .card-wrapper {
    width: 470px;
    max-width: 470px;
  }
}
