/* 基础样式重置 */
body {
  margin: 0 auto;
  padding: 0;
  height: 100%;
}

html {
  height: 100%;
}

.login-page,
.login-page-title,
.login-page-title h1,
.login-page-container,
.login-page-container-left, 
.login-page-container-right,
.input-group {
  display: flex;
  align-items: center;
}

.login-page,
.login-page-container-right,
.input-group {
  flex-direction: column;
}

.login-page-container-left, 
.login-page-container-right {
  flex: 1;
  height: 100%;
}

.login-page {
  width: 100vw;
  height: 86vh;
  padding: 7vh 0;
  background: url('../img/loginBackground.png') no-repeat center center;
  background-size: cover;
  box-sizing: content-box;
}

/* 登录页面标题区域 */
.login-page-title {
  width: 85%;
  color: white;
}

.login-page-title h1 {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
  margin: 0;
  font-size: 2.5em;
  font-weight: bold;
}
 
.login-page-title img {
  width: 2em;
  height: 2em;
  margin-right: 0.2em;
}

.login-page-container {
  height: 70%;
  min-width: 60em;
  aspect-ratio: 16/9;
  background-color: aliceblue;
  border-radius: 40px;
  margin-top: 4%;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 4% 6%;
}

.login-page-container-left {
  justify-content: center;
}

.login-page-container-left img {
  height: 80%;
  aspect-ratio: 474/433;
}

.login-page-container-right {
  justify-content: space-evenly;
}

.login-page-container-right h2 {
  font-size: 1.5em;
  margin: 0;
}

.input-group {
  width: 72%;
  min-width: 6em;
  height: 30%;
  min-height: 6em;
  justify-content: space-between;
}

.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon img {
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
}

.input-with-icon input {
  width: 100%;
  padding: 0.8em 1em 0.8em 3em;
  border: 1px solid #e0e0e0;
  border-radius: 36px;
  font-size: 1em;
  outline: none;
  box-sizing: border-box;
}

.input-with-icon input::placeholder {
  color: #999;
}

.login-btn {
  width: 72%;
  min-width: 6em;
  padding: 0.8em;
  border: none;
  border-radius: 25px;
  background: linear-gradient(to right, #9CDBB7, #05D763);
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.login-btn:hover {
  opacity: 0.9;
}
.footer{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 5%;
  color: #ccc;
  font-size: 14px;
  text-align: center;
}
.footer a{
  color: #ccc;
}



.wrap .modal_tips {
  width: 240px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 18px 0 rgba(27, 28, 29, .3);
  box-shadow: 0 2px 18px 0 rgba(27, 28, 29, .3);
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -120px;
  margin-top: -30px
}

.wrap .modal_tips > img {
  display: block;
  width: 14px;
  height: 14px
}

.wrap .modal_tips .tips_text {
  width: 180px;
  font-size: 12px;
  color: rgba(0, 0, 0, .65);
  text-align: justify
}


.wrap .modal_tips, .wrap > header > div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal
}
