/* Forgot Password component specific styles */
.forgot-password-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-subtitle {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.field-hint {
  color: #64748b;
  font-size: 12px;
  margin-top: 6px;
  margin-bottom: 0;
}

.btn-reset-password {
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.btn-reset-password:hover {
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
}

.btn-reset-password svg {
  width: 16px;
  height: 16px;
}
