/* Login-scherm — verwelkomend tweeluik: merkpaneel met begroeting links,
   formulier rechts. Alleen gebruikt door site/paginas/login.php.
   Blauwtinten volgen de topbalk/bestelflow (#1d4fa6 / #1d65af / #1062fe). */

.login-sectie {
	background:
		radial-gradient(900px 420px at 88% -60px, rgba(16, 98, 254, .10), transparent 60%),
		radial-gradient(760px 400px at 8% 115%, rgba(29, 79, 166, .08), transparent 60%);
}

.login-wrap { max-width: 1020px; }

.login-kaart {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
	background: #fff;
	border: 1px solid var(--rand);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(29, 79, 166, .16), 0 2px 10px rgba(29, 79, 166, .07);
}

@media (prefers-reduced-motion: no-preference) {
	.login-kaart { animation: login-in .45s ease-out both; }
	@keyframes login-in {
		from { opacity: 0; transform: translateY(12px); }
	}
}

/* Linker merkpaneel: gradient in de huisstijl met zachte sier-cirkels. */
.login-zij {
	position: relative;
	overflow: hidden;
	background: linear-gradient(152deg, #153c86 0%, #1d4fa6 52%, #1062fe 130%);
	color: #fff;
	padding: 46px 42px;
	display: flex;
	flex-direction: column;
}

.login-zij::before,
.login-zij::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, .09);
}

.login-zij::before { width: 320px; height: 320px; right: -130px; top: -140px; }
.login-zij::after { width: 240px; height: 240px; left: -100px; bottom: -110px; }

.login-zij > * { position: relative; z-index: 1; }

.login-groet {
	margin: 0 0 10px;
	color: #b6cdf6;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
}

/* Dagblok: glas-kaartje met grote klok + datum links en het weer rechts. */
.login-dagblok {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	margin: 0 0 22px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 16px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.login-dagblok-links { min-width: 0; }

.login-klok {
	display: block;
	color: #fff;
	font-size: 29px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: .01em;
	font-variant-numeric: tabular-nums;
}

.login-datum {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	color: #dbe6fb;
	font-size: 13.5px;
}

.login-datum svg { flex: none; color: #b6cdf6; }
.login-datum-tekst::first-letter { text-transform: uppercase; }

.login-weer {
	display: inline-flex;
	align-items: center;
	gap: 11px;
}

.login-weer[hidden] { display: none; }

.login-weer-icoon { flex: none; color: #fff; filter: drop-shadow(0 2px 6px rgba(10, 30, 70, .25)); }
.login-weer-icoon[hidden] { display: none; }
.login-weer-icoon .wi-geel { stroke: #ffd166; }
.login-weer-icoon .wi-blauw { stroke: #9ed2ff; }
.login-weer-icoon .wi-zacht { stroke: #cfe0fb; }

.login-weer-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.login-weer-temp {
	color: #fff;
	font-size: 21px;
	line-height: 1.15;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.login-weer-tekst {
	color: #dbe6fb;
	font-size: 12.5px;
	white-space: nowrap;
}

.login-zij .login-welkom {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.22;
	font-weight: 800;
	letter-spacing: -.01em;
	color: #fff;
}

.login-welkom-sub {
	margin: 0 0 14px;
	color: #dbe6fb;
	font-size: 15px;
	line-height: 1.65;
}

.login-welkom-cta {
	margin-bottom: 0;
	color: #fff;
	font-weight: 600;
}

/* Contactblok (registratie): prominente WhatsApp-knop + kleine linkjes. */
.login-contact { margin-top: 16px; }

.login-contact-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 11px 20px;
	border-radius: 50px;
	background: #2E9E4F;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(46, 158, 79, .3);
	transition: background .15s;
}

.login-contact-wa:hover { background: #278a45; }
.login-contact-wa svg { flex: none; }

.login-contact-links {
	margin: 12px 0 0;
	font-size: 14px;
	color: #dbe6fb;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.login-contact-links a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.login-contact-links a:hover { color: #ffd166; }
.login-contact-punt { color: rgba(255, 255, 255, .45); }

/* Rechter formulierpaneel. */
.login-vorm { padding: 44px 42px 36px; }

.login-vorm .login-titel { margin: 0 0 6px; font-size: 25px; color: #16408c; }

.login-vorm-sub {
	margin: 0 0 24px;
	color: var(--dim);
	font-size: 15px;
}

.login-fout {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14.5px;
}

.login-info {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #15803d;
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14.5px;
}

.login-veld { margin-bottom: 16px; }
.login-veld--laatste { margin-bottom: 22px; }

.login-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
}

.login-invoer { position: relative; display: block; }

.login-veld-icoon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
}

.login-input {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid var(--rand);
	border-radius: 12px;
	background: #f8fafc;
	font: inherit;
	box-sizing: border-box;
	transition: border-color .15s, background .15s, box-shadow .15s;
}

.login-invoer--icoon .login-input { padding-left: 44px; }
.login-input--wachtwoord { padding-right: 48px; }

.login-input:hover { border-color: #cbd5e1; }

.login-input:focus {
	outline: none;
	border-color: #1d65af;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(16, 98, 254, .14);
}

.login-oog {
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: #64748b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s, color .15s;
}

.login-oog svg[hidden] { display: none; }

.login-oog:hover { background: #eef4fd; color: #1d65af; }

.login-oog:focus-visible {
	outline: 2px solid #1d65af;
	outline-offset: 1px;
}

/* Knop-opmaak komt uit de centrale knoppenlaag in site.css (btn btn-primary
   btn-groot); hier alleen de structurele volle breedte in het formulier. */
.login-knop { width: 100%; }

.login-scheiding {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 22px 0 16px;
	color: var(--dim);
	font-size: 13px;
}

.login-scheiding-lijn {
	flex: 1;
	height: 1px;
	background: var(--rand);
}

.login-google { display: flex; justify-content: center; }

.login-subtitel {
	font-size: 14px;
	color: var(--dim);
	margin: 20px 0 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.login-subtitel a { font-weight: 600; }

.login-punt { color: #cbd5e1; }

/* Social-login-knoppen (Apple/LinkedIn) — zelfde breedte/hoogte als de Google-knop. */
.login-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 360px;
	margin: 10px auto 0;
	padding: 11px 16px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border: 1px solid #dadce0;
	transition: filter .15s, background .15s;
}

.login-social svg { flex: none; }
.login-apple { background: #000; color: #fff; border-color: #000; }
.login-apple:hover { filter: brightness(1.15); }
.login-linkedin { background: #0a66c2; color: #fff; border-color: #0a66c2; }
.login-linkedin:hover { filter: brightness(1.08); }

@media (max-width: 880px) {
	.login-wrap { max-width: 560px; }
	.login-kaart { grid-template-columns: minmax(0, 1fr); }
	.login-zij { padding: 26px 24px 24px; }
	.login-dagblok { padding: 12px 14px; margin-bottom: 18px; }
	.login-klok { font-size: 24px; }
	.login-zij .login-welkom { font-size: 23px; margin-bottom: 8px; }
	.login-welkom-sub { font-size: 14.5px; margin-bottom: 11px; }
	.login-vorm { padding: 30px 28px 28px; }
}
