.page {
  width: 100%;
  padding-top: 180px;
}
.page .login-container {
  border-radius: 4px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  min-height: calc(100vh - 200px);
  padding-top: 80px;
}
.page .login-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 24px;
  font-family: PingFang SC;
  font-weight: 500;
}
.page .input-group {
  margin-bottom: 20px;
  max-width: 380px;
}
.page .input-group label {
  display: block;
  margin-bottom: 8px;
  color: #3C3C3C;
  font-size: 14px;
  font-weight: 500;
}
.page .input-group input {
  width: 380px;
  height: 48px;
  padding: 8px 12px;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.page .input-group input:focus {
  border-color: #2A89E7;
  outline: none;
  box-shadow: 0 0 0 2px rgba(67, 158, 243, 0.2);
}
.page .button-container {
  margin-top: 48px;
}
.page .button-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
}
.page .google-login-button {
  padding: 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
}
.page .google-login-button img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url("../../static/icon/icons3.svg") -143px 0 no-repeat!important;
}
.page .login-button {
  background-color: #2A89E7;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  height: 48px;
  width: 380px;
  transition: background-color 0.3s ease;
}
.page .login-button:hover {
  background-color: #3579F6;
 } 
.page .middle-tip {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #969696;
  margin: 24px auto;
}
.page .google-login-button {
  padding: 8px 20px;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  cursor: pointer;
  width: 380px;
  height: 48px;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease;
}
.page .google-login-button:hover {
  border: 1px solid #D8D8D8;
  background-color: #E8E8E8;
}
.page .forgot-password {
  color: #3C3C3C;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  float: right;
  margin-top: 20px;
}
.page .forgot-password:hover {
  color: #2A89E7;
}