:root {
  --bg-1: #0b1320;
  --bg-2: #0a1526;
  --text: #e8eefc;
  --muted: rgba(232, 238, 252, 0.65);
  --yellow: #f6b100;
  --yellow-dark: #f2a400;
  --card-border: rgba(255, 255, 255, 0.08);
  --input-bg: #111f35;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 480px;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: linear-gradient(var(--yellow), var(--yellow-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo svg {
  width: 24px;
  fill: #1a2437;
}

h1 {
  margin: 0 0 8px;
  font-size: 38px;
}

.sub {
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}

.sub a {
  color: var(--text);
  text-decoration: underline;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
}

.field {
  position: relative;
  margin-bottom: 14px;
}

.field input {
  width: 100%;
  height: 54px;
  padding: 0 16px 0 44px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--input-bg);
  color: var(--text);
  font-size: 15px;
}

.field input::placeholder {
  color: rgba(232, 238, 252, 0.45);
}

.icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  fill: rgba(232, 238, 252, 0.7);
}

.row {
  text-align: right;
  margin-bottom: 18px;
}

.row a {
  font-size: 13px;
  color: var(--muted);
}

.btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(var(--yellow), var(--yellow-dark));
  font-weight: 700;
  cursor: pointer;
}

.divider {
  margin: 22px 0 16px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social button {
  height: 46px;
  min-width: 140px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}


/* LOGIN: brand-mark gebruikt als wrapper voor img in het logo-blok */
.logo .brand-mark{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: transparent;   
  border-radius: inherit;    
}

.logo .brand-logo{
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
}
