/* forgot-password.css - Forgot password page specific styles */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/ChatGPT\ Image\ Jan\ 29\,\ 2026\,\ 12_29_40\ PM.png') center/cover no-repeat;
}

.reset-card {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.reset-card h2 {
  color: var(--primary);
}

.reset-card .text-muted {
  color: var(--text-light) !important;
}

.btn-outline-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .reset-card {
    padding: 2rem 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .reset-card {
    padding: 1.5rem 1rem !important;
  }
  .reset-card h2 {
    font-size: 1.3rem;
  }
  .form-control {
    padding: 0.65rem;
    font-size: 0.9rem;
  }
  .btn-primary,
  .btn-outline-secondary {
    padding: 0.65rem !important;
    font-size: 0.9rem;
  }
}