/* Grill Vibe — client1 forgot/reset password UI.
 * Matches the /fidelite portal design tokens: accent orange #e65100,
 * near-monochrome, zero border-radius, 'Segoe UI' stack. Scoped to .gvfp-* so it
 * never collides with the React cp-* styles. */

/* "Mot de passe oublié ?" link under the password field (login mode only). */
.gvfp-link {
  display: inline-block;
  margin: 2px 0 4px;
  padding: 0;
  background: none;
  border: 0;
  color: #8a8a8a;
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.gvfp-link:hover { color: #e65100; }

/* Full-screen overlay for the "enter your email" step + the reset page. */
.gvfp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 48px 16px;
  background: #fff;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #111;
}
.gvfp-card {
  width: 100%;
  max-width: 420px;
  margin: auto;
}
.gvfp-card * { box-sizing: border-box; border-radius: 0 !important; }

.gvfp-brand {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 24px;
}
.gvfp-brand .o { color: #e65100; }

.gvfp-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.gvfp-sub {
  font-size: 14px;
  line-height: 1.5;
  color: #8a8a8a;
  margin: 0 0 22px;
}

.gvfp-field { display: block; margin-bottom: 16px; }
.gvfp-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.gvfp-input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  font-size: 16px;
  color: #111;
  background: #fff;
  border: 1px solid #ececec;
  outline: none;
}
.gvfp-input:focus { border-color: #111; }

.gvfp-pw { position: relative; }
.gvfp-pw .gvfp-input { padding-right: 78px; }
.gvfp-pw-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 52px;
  padding: 0 14px;
  background: none;
  border: 0;
  font: inherit;
  font-size: 13px;
  color: #8a8a8a;
  cursor: pointer;
}

.gvfp-btn {
  width: 100%;
  height: 52px;
  border: 0;
  font-size: 16px;
  font-weight: 800;
  background: #e65100;
  color: #fff;
  cursor: pointer;
  margin-top: 4px;
}
.gvfp-btn:disabled { opacity: .55; cursor: default; }

.gvfp-ghost {
  width: 100%;
  height: 48px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #ececec;
  font: inherit;
  font-weight: 700;
  color: #444;
  cursor: pointer;
}

.gvfp-msg {
  margin: 14px 0 0;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ececec;
  background: #fafafa;
  color: #444;
}
.gvfp-msg.ok { border-color: #bfe3c6; background: #f2fbf4; color: #1c6b34; }
.gvfp-msg.err { border-color: #e0b4b0; background: #fff; color: #b3261e; }

.gvfp-success-ico {
  display: block;
  margin: 0 auto 8px;
  font-size: 40px;
  line-height: 1;
  text-align: center;
}
