body, html {
  height: 100%;
  margin: 0;
}

.bg {
  height: 100%; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-area {
  width: 400px;
  min-height: 100px;
  background-color: white;
  padding: 50px;
}

.logo {
  width: 200px;
}

.logo-text {
  text-align: center;
  color: #a3a3a3;
  margin-top: 10px;
  margin-bottom: 40px;
}

.text {
  text-align: center;
  color: #a3a3a3;
  margin-top: 10px;
  display:block;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.password-request {
  font-style: italic;	
  text-align: right;
  color: #a3a3a3;
  margin-top: 10px;
  float: right;
  margin-bottom: 40px;
}

.input {
  border-radius: 20px;
  width: 100%;
  margin: 10px 0;
}

.button {
  background-color: #858787;
  color: white;
  border-radius: 20px;
  width: 100%;
  font-size: 18px;
  padding: 5px 0;
  font-weight: bold;
}

.form-control:focus {
  border-color: #878787 !important;
  outline: 0 !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(135,135,135,.6) !important;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(135,135,135,.6) !important;
}
