.forgot-password-container {
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.form-subtext {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #444;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #007bff;
  outline: none;
}

.form-button {
  width: 100%;
  background: #003d82;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.form-button:hover {
  background: #0056b3;
}

.form-links {
  text-align: center;
  margin-top: 15px;
}

.back-link {
  font-size: 14px;
  color: #003d82;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.reset-password-container {
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

