:root{
  --blue: #1f3681;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f3f5f9;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(2, 6, 23, .12);
  --radius: 18px;
}

*{ box-sizing: border-box; }

body{
  margin:0;
  min-height:100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -220px, rgba(31,54,129,.18), transparent 60%),
    var(--bg);
  color: var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px;
}

.card{
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.header{
  padding: 28px 28px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logo{
  width: 170px;         /* “fuld størrelse”-look */
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.title{
  margin: 0;
  font-size: 34px;      /* fuld overskrift */
  line-height: 1.1;
  letter-spacing: .2px;
  color: var(--blue);
  font-weight: 750;
}

.subtitle{
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.content{
  padding: 22px 28px 10px;
}

.field{
  margin-bottom: 14px;
}

label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
}

select:focus{
  outline:none;
  border-color: rgba(31,54,129,.55);
  box-shadow: 0 0 0 4px rgba(31,54,129,.12);
}

.remember{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  user-select: none;
  margin: 8px 0 16px;
}

input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.btn{
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .05s ease, filter .15s ease;
}

.btn:hover{ filter: brightness(1.05); }
.btn:active{ transform: translateY(1px); }

.status{
  margin-top: 12px;
  min-height: 18px;
  font-size: 13px;
  color: var(--muted);
}

.footer{
  padding: 14px 28px 18px;
  font-size: 12px;
  color: var(--muted);
}
