/* ================================================================
   Nora Signal — Innlogging og registrering
   Utledet fra samples/sample2.html · Profilhåndbok v1.0
   ================================================================ */

/* ============ Innlogging ============ */
.auth {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; padding: 28px;
}
.auth-box {
  width: 400px; max-width: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.auth-logo .logotype { color: var(--text); }
.auth-tagline { font-size: 13px; color: var(--text-secondary); text-align: center; line-height: 1.6; margin-bottom: 22px; }
.auth-tabs { display: flex; background: var(--bg); border-radius: 8px; padding: 3px; margin-bottom: 6px; }
.auth-tab {
  flex: 1; text-align: center; padding: 7px; border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  cursor: pointer; transition: all .15s;
}
.auth-tab.active { background: var(--surface); color: var(--text); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }
.auth-label {
  display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text-tertiary); margin: 14px 0 5px;
}
.input {
  width: 100%; padding: 9px 12px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
  font-family: inherit; font-size: 13.5px; color: var(--text);
  transition: all .15s;
}
.input:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.input::placeholder { color: var(--text-tertiary); }
.auth-submit { width: 100%; justify-content: center; margin-top: 18px; padding: 10px 14px; }
.auth-link { display: block; text-align: center; font-size: 12.5px; color: var(--accent); cursor: pointer; margin-top: 12px; }
.auth-link:hover { text-decoration: underline; }
.auth-terms { display: block; font-size: 11.5px; color: var(--text-tertiary); text-align: center; line-height: 1.5; margin-top: 12px; }
.auth-divider {
  display: flex; align-items: center; gap: 10px; margin: 18px 0 0;
  color: var(--text-tertiary); font-size: 11px; text-transform: uppercase; letter-spacing: .5px;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.auth-foot { font-size: 11.5px; color: var(--text-tertiary); }

/* Valgt firma i registreringen: org.nr under feltet + «Endre». */
.reg-valgt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 6px; padding: 7px 10px;
  background: var(--bg); border: 1px solid var(--border-light); border-radius: 6px;
  font-size: 12px; color: var(--text-secondary);
}
.reg-valgt strong { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.reg-valgt .flink { font-size: 11.5px; color: var(--accent); }

/* ============ Venter på godkjenning ============ */
.vent-ikon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin: 6px auto 14px;
  border-radius: 50%; background: var(--bg); color: var(--accent);
}
.vent-ikon svg { width: 24px; height: 24px; }
.vent-tittel { font-size: 16px; font-weight: 600; color: var(--text); text-align: center; margin-bottom: 10px; }
.vent-tekst { font-size: 13px; color: var(--text-secondary); text-align: center; line-height: 1.6; }
.vent-tekst strong { color: var(--text); font-weight: 600; }
