.main-container {
  margin: 0 auto;
  padding: 50px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.main-logo img {
  width: 40px;
}

.main-title {
  font-family: "Texta";
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.main-title span {
  line-height: 1;
}

.login-container {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px 0;
  padding: 30px 20px;
}

.login-title {
  font-family: "Texta";
  font-size: 2em;
  font-weight: 800;
  text-align: center;
}

.login-info {
  color: #808080;
}

.login-footer-logo {
  margin-top: 10px;
}

.login-footer-logo img {
  width: 170px;
}

.login-input-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.login-input-area .input-box {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(0, 183, 239, 0.3137254902);
  height: 50px;
  border-radius: 50px;
}

.login-input-area .input-box label {
  width: 70px;
}

.login-input-area .input-box input {
  width: calc(100% - 70px - 40px);
  height: 100%;
  font-size: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #000;
}

i.icon-user {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../images/icon-user.svg) no-repeat center;
  background-size: 70%;
}

i.icon-barcode {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: url(../images/icon-barcode.svg) no-repeat center;
  background-size: 100%;
}

.btn-area {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-btn {
  background: #8540D6;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 50px;
  border-radius: 60px;
}