html, body {
	background: #FFD812;
  width: 100%;
  height: 100%;
}

#app {
  width: 100%;
  height: 100%;
}

.login-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .login-container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
  }
  .login-container input {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    padding: 30px 20px;
  }

  .login-container h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
  }

#logo {
	display: block;
  width: 100%;
	max-width: 150px;
  margin: 0 auto 20px;
}

#otp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
  #otp input {
    width: 20%;
    max-width: 60px;
    height: 65px;
    padding: 15px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    border: solid 1px rgba(0,0,0,0.1);
    /*margin: 0 0 8px;*/
    margin:  0 5px 1.5rem;
    font-size: 16px;
    font-weight: 700;
  }

#otp input.fill {
  border: solid 1px #FFA42F;
}

/* RESPONSIVE */