.page {
  width: 100%;
  padding-top: 180px;
}
.page .reset-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 .reset-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: 14px;
  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 .reset-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 .modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.page .modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  width: 580px;
  height: 400px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.page .modal-content p {
  color: var(--art-text-color);
}
.page .modal-content h3 {
  color: #333;
  margin: 96px 0 24px 0;
}
.page .modal-content button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 128px;
  margin-bottom: 40px;
  width: 380px;
}
.page .modal-content button:hover {
  background-color: var(--primary-color);
}