* {
  box-sizing: border-box;
}
 
*:focus {
  outline: none;
}
html, body {
  font-family: Arial;
  background-color: #a0a0a0;
  margin: 0;
  padding: 0;
  height: 100%;
}
.form-background {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.login {
  margin: 50px auto;
  width: 300px;
}
.new-password {
  width: 450px;
}
.totp-setup {
  width: 450px;
}
.verify {
  width: 450px;
}
.notification {
  width: 450px;
}
.login-screen {
  background-color: #FFF;
  padding: 20px;
  border-radius: 5px
}
 
.app-title {
  text-align: center;
  color: #777;
}

.app-logo {
  width: 220px;
  height: 100px;
}

.login-form {
  text-align: center;
}
.control-group {
  margin-bottom: 10px;
}
 
input {
  text-align: center;
  background-color: #ECF0F1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 200;
  padding: 10px 0;
  width: 250px;
  transition: border .5s;
}
 
input:focus {
  border: 2px solid #3498DB;
  box-shadow: none;
}
 
.btn {
  border: 2px solid transparent;
  background: #3498DB;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
}
 
.btn:hover {
  background-color: #2980B9;
}
 
.login-link {
  font-size: 12px;
  color: #444;
  display: block;
    margin-top: 12px;
}

.login-hint {
  text-align: left;
  font-size: 14px;
}
