/* ============================================================
   Zaken News — Auth CSS
   ============================================================ */

:root {
  --accent:       #BA0000;
  --accent-dark:  #950000;
  --accent-light: #f5e0e0;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --bg:           #f3f4f6;
  --surface:      #ffffff;
  --radius:       10px;
  --surface:      #ffffff;
  --focus-ring:   rgba(186,0,0,.1);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  width: 100%;
  max-width: 400px;
  padding: 40px 36px 36px;
}

.auth-brand         { display: block; text-align: center; margin-bottom: 32px; text-decoration: none; }
.auth-brand-logo {
  display: block;
  max-height: 44px;
  width: auto;
  margin: 0 auto;
}
.auth-brand-name { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
.auth-title    { font-size: 18px; font-weight: 700; }
.auth-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.auth-footer   { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }

/* form-group, form-label, form-hint, form-control → style.css */
/* Auth overrides */
.form-group { 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /* margin-bottom: 8px;  */
}
.form-head {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 6px;
}

.btn-submit {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff; border: none;
  border-radius: 7px;
  font-size: 14px; font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--accent-dark); }

/* alert + variants → style.css */
/* Auth override: smaller padding + tighter radius */
.alert { padding: 10px 14px; border-radius: 7px; font-size: 13px; }

/* Password toggle */
.pw-wrap { width: 100%;position: relative; }
.pw-toggle {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; color: var(--text-muted);
  padding: 4px;
  display: flex; align-items: center;
}
.pw-toggle:hover { color: var(--text); }
.pw-toggle.is-active { color: var(--accent); }
.pw-wrap .form-control { padding-right: 36px; }
.pw-wrap .form-control::-ms-reveal,
.pw-wrap .form-control::-ms-clear { display: none; }

.icon-eye-off { display: none; }
.form-head .forgot-link { font-size: 12px; }

/* Password strength */
.pw-strength-bars { margin-top: 6px; display: flex; gap: 4px; width: 100%; }
.strength-bar {
  flex: 1; height: 3px;
  background: var(--border);
  border-radius: 99px;
  transition: background .2s;
}
