html {
  background: url(../images/background.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#outer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#inner {
  margin: 20px;
  width: 400px;
  padding: 20px;
  background-color: white;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#logo {
  width: 300px;
  height: 300px;
  margin: 10px;
}

.login-text {
  width: 300px;
  background-color: #ddd;
  height: 38px;
  border: 1px;
  border-color: black;
  font-size: large;
  box-shadow: none;
  border-radius: 0px;
  font-family: "Roboto";
  font-weight: 400;
  margin: 10px;
  padding: 5px;
}

.login-button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.login-button {
  border-radius: 8px;
  background-color: #F15E2B;
  font-family: "Roboto";
  font-weight: 700;
  color: white;
  width: 180px;
  height: 40px;
  line-height: 40px;
  font-size: large;
  cursor: pointer;
  margin-top: 10px;
}