/* ==========================
   BANNER FORGOT PASSWORD
========================== */

.forgot-banner {
  background-color: #5a3314;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px; /* compensa o header sticky */
}

.forgot-banner h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================
   WRAPPER
========================== */

.forgot-wrapper {
  min-height: calc(100vh - 240px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 24px;
}

/* ==========================
   CARD
========================== */

.forgot-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 520px;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.forgot-subtitle {
  font-size: 15px;
  color: #5b4b2c;
  margin-bottom: 24px;
}

/* ==========================
   FORM
========================== */

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input {
  height: 48px;
  padding: 0 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-group input:focus {
  outline: none;
  border-color: #a97b1e;
}

/* ==========================
   BUTTON
========================== */

.btn-primary {
  width: 100%;
  height: 52px;
  background-color: #a97b1e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #8f6618;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.form-feedback {
  min-height: 20px;
  margin: -8px 0 18px;
  font-size: 14px;
  line-height: 1.45;
}

.form-feedback-error {
  color: #a33a2a;
}

.form-feedback-success {
  color: #2f7a3b;
}
