body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  body {
    background-color: #e6f7ff;
  }
}

.login-container {
  padding: 0.3rem;
  border-radius: 0.16rem;
  width: 80%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .login-container {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0.08rem rgba(0, 0, 0, 0.1);
    width: 8rem;
  }
}

.login-title {
  color: #333;
  font-size: 0.4rem;
  margin-bottom: 0.2rem;
}

.login-not-account {
  font-size: 0.26rem;
}

.btn-register {
  color: #007bff;
  cursor: pointer;
  text-decoration: none;
  margin-left: 0.2rem;
}

.login-form {
  margin-top: 1.2rem;
}
.login-form .input-group {
  width: 100%;
  height: 0.8rem;
  position: relative;
  margin: 0.5rem auto;
  box-sizing: border-box;
  border-bottom: 1px solid #dadada;
  padding: 0 0.2rem;
}
.login-form .input-group .t-input {
  width: 100%;
  height: 0.8rem;
  line-height: 0.8rem;
  margin: 0 auto 0.5rem;
  font-size: 0.3rem;
}

.login-button {
  width: 100%;
  padding: 0.3rem;
  border-radius: 0.16rem;
  box-shadow: 0 0.08rem 0.16rem rgba(0, 0, 0, 0.1);
  margin-top: 0.6rem !important;
}
@media (min-width: 768px) {
  .login-button {
    margin-bottom: 0.4rem !important;
  }
}

.t-agreement {
  width: 80%;
  max-width: 600px;
  white-space: nowrap;
  height: 0.34rem;
  font-size: 0.26rem;
  color: #adadad;
  position: fixed;
  bottom: 0.4rem;
}
.t-agreement .t-choose {
  width: 0.35rem;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0.15rem;
  margin-left: -0.05rem;
}
@media (min-width: 768px) {
  .t-agreement {
    font-size: 0.3rem;
  }
}

.t-agreement-text {
  color: #333;
  font-size: 0.26rem;
  text-align: center;
  padding: 0.3rem;
}
