body {
  font-family: "Helvetica Neue", sans-serif;
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
}

.reset-container {
  width: 100%;
  max-width: 420px;
  margin: 60px auto;
  padding: 0 16px;
  text-align: center;
}

.reset-icon {
  width: 48px;
  height: 48px;
  background-color: #1e40af;
  color: white;
  font-size: 24px;
  line-height: 48px;
  border-radius: 12px;
  margin: 0 auto 12px;
}

h2 {
  margin: 8px 0;
  font-size: 22px;
}

p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.form-group {
  text-align: left;
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #111827;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #2563eb;
}

.captcha-group {
  width: 260px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-group input {
  flex: 1;
}

.captcha-code {
  text-align: center;
  width: 100px;
  margin-right: -186px;
  padding: 7px 9px;
  background-color: #fff;
  border: 1px solid #cba059;
  color: #cba059;
  border-radius: 8px;
  user-select: none;
  cursor: pointer;
}

.submit-btn {
  width: 446px;
  background-color: #111827;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
}

.submit-btn:hover {
  background-color: #1f2937;
}

.submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

.footer-text {
  font-size: 14px;
  margin-top: 20px;
  color: #6b7280;
}

.footer-text a {
  color: #2563eb;
  text-decoration: none;
  margin-left: 4px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  border-radius: 8px;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.password-toggle {
  width: 446px;
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle input {
  flex: 1;
  padding-right: 10px;
}

.password-toggle-icon {
  position: absolute;
  right: 12px;
  cursor: pointer;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.success-message {
  background-color: #f0f9ff;
  border: 1px solid #0ea5e9;
  color: #0c4a6e;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
}

