.page {
  width: 100%;
  padding-top: 180px;
}
.page .forgot-container {
  border-radius: 4px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  min-height: calc(100vh - 200px);
  position: relative;
  padding-top: 80px;
}
.page .forgot-container .back-btn {
  height: 32px;
  width: 32px;
  position: absolute;
  left: 16px;
  top: 16px;
}
.page .forgot-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 .forgot-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;
}