:root {
  --hav: #144681;
  --strand: #B19C80;
  --bar: #81203B;
  --skog: #2F746A;
  --skymning: #AC480D;

  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --text: #0C1320;
  --muted: rgba(12, 19, 32, 0.70);
  --border: rgba(20, 70, 129, 0.18);
  --shadow: 0 10px 30px rgba(12, 19, 32, 0.10);

  --radius: 18px;
  --btn-radius: 3px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", "Segoe UI Variable", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #F2F6FA;
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(460px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
  padding: 36px 24px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.brand h1 {
  font-size: 18px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.2px;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.btns {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.btn {
  touch-action: manipulation;
  display: grid;
  grid-template-columns: 22% 78% 0%;
  align-items: center;

  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border: 1px solid #144681;  /*#0C98D6 #144681 */
  background: #144681;        /*#0C98D6 #144681 */
  border-radius: var(--btn-radius);
  padding: 8px 0 8px 8px;
  min-height: 46px;
  text-decoration: none;
  color: #FFFFFF;

  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  transition: box-shadow 120ms ease, box-shadow 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.btn .icon {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn .icon svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: #FFFFFF;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:focus-visible {
  outline: 3px solid rgba(20,70,129,0.35);
  outline-offset: 2px;
}

.btn:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  background-color: #134175;  /*#006299 #134175*/
  border-color: #134175;      /*#006299 #134175*/
}

@media (hover: none) {
  .btn:hover {
    background-color: #0C98D6;
    border-color: #0C98D6;
    box-shadow: none;
  }
}

.btn:active {
  background-color: #005a8a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.btn .left {
  grid-column: 2;
  display: grid;
  gap: 2px;
  text-align: left;
}

.btn .title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.btn .meta {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.btn.primary { }
.btn.warn { }


.note {
  margin-top: 16px;
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

.note .note-inner {
  max-width: 220px;
  margin: 0 auto;
  text-align: left;
}

.note strong {
  font-weight: 700;
}

.note-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  text-align: center;
}

.note-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
}

.status {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(12, 19, 32, 0.78);
  min-height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
