/* Store Client - Forgot Password (Unified Auth UI) */

:root{
  /* variables come from inline :root in php */
}

body{
  background: var(--section-bg);
  color: var(--text);
  font-family: var(--font-family);
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}

.auth-card{
  width: 100%;
  max-width: 460px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 18px;
  background:#fff;
  overflow:hidden;
  box-shadow: 0 14px 34px rgba(17,24,39,.04);
}

.auth-head{
  padding: 18px 18px 12px 18px;
  border-bottom: 1px solid rgba(17,24,39,.06);
  text-align:center;
}

.brand{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .2px;
}

.muted{ color: var(--muted); }

.btn-main{
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 12px;
  font-weight: 900;
  padding: 12px 14px;
}

.btn-main:hover{
  filter: brightness(.95);
}

.captcha-row{
  display:flex;
  gap:10px;
  align-items:center;
}

.captcha-badge{
  font-size:14px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
  font-weight: 900;
  white-space: nowrap;
}
