:root {
  --forgot-primary: #8b5cf6;
  --forgot-secondary: #64748b;
  --forgot-surface: #ffffff;
  --forgot-border: #e2e8f0;
  --forgot-text: #0f172a;
  --forgot-bg: #f8fafc;
}

.forgot-pass-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--forgot-bg);
}

.forgot-pass-card {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.forgot-pass-logo {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: var(--forgot-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 34px;
}

.forgot-pass-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--forgot-text);
  margin-bottom: 10px;
}

.forgot-pass-subtitle {
  text-align: center;
  color: var(--forgot-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* FORM */
.forgot-pass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.forgot-pass-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.forgot-pass-label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.forgot-pass-input {
  width: 100%;
  height: 54px;
  border: 1px solid var(--forgot-border);
  border-radius: 18px;
  padding: 0 18px;
  font-size: 15px;
  background: #f8fafc;
  outline: none;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.forgot-pass-input:focus {
  border-color: var(--forgot-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.forgot-pass-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #eff6ff;
  color: #1d4ed8;
  line-height: 1.5;
}

.forgot-pass-btn,
.forgot-pass-btn-secondary {
  width: 100%;
  height: 54px;
  border-radius: 18px;
  font-size: 15px;
}
