.page {
  width: 100%;
  padding-top: 180px;
}
.page .register-container {
  border-radius: 4px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  min-height: calc(100vh - 200px);
  padding-top: 40px;
}
.page .register-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 24px;
  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 .middle-tip {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #969696;
  margin: 24px auto;
}

.page .google-register-button {
  padding: 8px auto;
}
.page .google-register-button img {
  width: 164px;
  height: 28px;
}
.page .register-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 .register-button:hover {
  background-color: #3579F6;
}
