/* ── Trigger button wrapper ─────────────────────────────────────────────── */

#nzgeo-login-trigger-wrap {
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
}

/* Fallback: fixed in top-right when header selector not found */
#nzgeo-login-trigger-wrap.nzgeo-trigger-fixed {
	position: fixed;
	top: 12px;
	right: 20px;
	z-index: 99998;
}

/* ── Trigger button ──────────────────────────────────────────────────────── */

.nzgeo-header-login-trigger {
	background: transparent;
	border: 1px solid #777777;
	border-radius: 0;
	color: #ffffff;
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	letter-spacing: 0.12em;
	padding: 4px 14px;
	text-transform: uppercase;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.nzgeo-header-login-trigger:hover {
	background: #fff;
	color: #000;
}

/* ── Popup panel ─────────────────────────────────────────────────────────── */

#nzgeo-header-login-popup {
	display: none;
	position: absolute;
	top: 70px;
	right: 0;
	z-index: 99999;
	background: #000;
	padding: 20px 22px 22px;
	min-width: 270px;
	box-sizing: border-box;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#nzgeo-header-login-popup.nzgeo-login-popup-open {
	display: block;
}

/* ── Form fields ─────────────────────────────────────────────────────────── */

.nzgeo-header-login-form {
	display: flex;
	flex-direction: column;
}

.nzgeo-login-input {
	background: transparent;
	border: none;
	border-bottom: 1px solid #555;
	color: #fff;
	font-family: inherit;
	font-size: 11px;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
	outline: none;
	padding: 10px 0;
	text-transform: uppercase;
	width: 100%;
}

.nzgeo-login-input::placeholder {
	color: #888;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nzgeo-login-input:focus {
	border-bottom-color: #fff;
}

/* ── Lost password link ──────────────────────────────────────────────────── */

.nzgeo-login-lost-password {
	margin: 8px 0 14px;
}

.nzgeo-login-lost-password a {
	color: #888;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.nzgeo-login-lost-password a:hover {
	color: #fff;
}

/* ── Action buttons ──────────────────────────────────────────────────────── */

.nzgeo-login-actions {
	display: flex;
	gap: 8px;
}

.nzgeo-login-btn {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	cursor: pointer;
	flex: 1;
	font-family: inherit;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 9px 10px;
	text-transform: uppercase;
	transition: background 0.2s, color 0.2s;
}

.nzgeo-login-btn:hover {
	background: #fff;
	color: #000;
}


.nzgeo-header-login-wrapper {
	position: relative;
}