body {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.forgot-password-container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.forgot-password-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.forgot-password-box h1 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.forgot-password-box h1 i {
  color: #2196F3;
  margin-right: 10px;
}

.progress-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.step {
  text-align: center;
  opacity: 0.5;
}

.step.active { opacity: 1; }

.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #2196F3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
  font-weight: bold;
}

.step.active .step-number {
  background: #4CAF50;
}

.step-text {
  font-size: 0.8rem;
  color: #666;
}

.form { display: none; }
.form.active { display: block; }

.form-text {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #2196F3;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #2196F3;
  color: white;
}

.btn-primary:hover { background: #1976D2; }

.btn-block { width: 100%; }

.form-footer {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.form-footer a {
  color: #2196F3;
  text-decoration: none;
}

.form-footer a:hover { text-decoration: underline; }

.error-message {
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.security-question {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  color: #333;
  font-weight: 500;
}

.password-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}
