@font-face {
  font-family: Poppins-ExtraBold;
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: Poppins-Regular;
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}
.login-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url("../images/login-bg.png") no-repeat top center;
  background-size: 100% 100%;
}

.login-box {
  width: 534px;
  padding: 56px 46px 77px;
  box-sizing: border-box;
  background: rgba(5, 12, 53, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: inset 3px 5px 20px 0px rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  color: #fff;
  z-index: 1;
}

.form-title {
  font-family: Poppins-Bold;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
  background: linear-gradient(20.0885942452deg, #C0FF3A 0%, #00FFA3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-item {
  margin-bottom: 20px;
  text-align: left;
}
.form-item label {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}
.form-item label .required {
  color: #ED2B1D;
  margin-right: 4px;
}
.form-item input {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0 15px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.form-item input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.verification-code .input-group {
  display: flex;
  gap: 10px;
}
.verification-code .input-group input {
  flex: 1;
}
.verification-code .input-group .code-btn {
  width: 100px;
  height: 40px;
  background: #1890ff;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, opacity 0.3s;
}
.verification-code .input-group .code-btn:hover {
  background: #40a9ff;
}
.verification-code .input-group .code-btn.is-countdown, .verification-code .input-group .code-btn:disabled {
  background: #666c7a;
  cursor: default;
  opacity: 0.8;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.form-footer .forgot-password {
  color: #ccc;
  font-size: 12px;
  cursor: pointer;
}
.form-footer .forgot-password:hover {
  color: #fff;
}

.submit-btn {
  width: 198px;
  height: 40px;
  background: rgba(0, 0, 0, 0);
  box-shadow: inset 6px 4px 16px 0px #005EFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Lato-Bold;
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
  margin: 50px auto 0;
}

.switch-link {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #ccc;
}
.switch-link span {
  cursor: pointer;
}
.switch-link span:hover {
  color: #fff;
  text-decoration: underline;
}

/*# sourceMappingURL=login.css.map */
