/* ── Customer Login Module ───────────────────────────────────────────────── */

.ndp-customer-login {
	max-width: 480px;
	margin: 0 auto;
	padding: 48px 40px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

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

.ndp-customer-login #ndp-customer-login-form p {
	margin: 0 0 18px;
}

.ndp-customer-login #ndp-customer-login-form label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .02em;
	margin-bottom: 6px;
	color: #1a1a2e;
}

.ndp-customer-login #ndp-customer-login-form input[type="text"],
.ndp-customer-login #ndp-customer-login-form input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	line-height: 1.4;
	color: #1a1a2e;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
	-webkit-appearance: none;
	appearance: none;
}

.ndp-customer-login #ndp-customer-login-form input[type="text"]:focus,
.ndp-customer-login #ndp-customer-login-form input[type="password"]:focus {
	outline: none;
	border-color: #1a1a2e;
	box-shadow: 0 0 0 3px rgba(26, 26, 46, .09);
}

/* ── Remember Me ─────────────────────────────────────────────────────────── */

.ndp-customer-login #ndp-customer-login-form .login-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
}

.ndp-customer-login #ndp-customer-login-form .login-remember label {
	margin: 0;
	font-weight: 400;
	font-size: 13px;
	color: #6b7280;
	cursor: pointer;
}

/* ── Submit button ───────────────────────────────────────────────────────── */

.ndp-customer-login #ndp-customer-login-form .login-submit {
	margin: 0;
}

.ndp-customer-login #ndp-customer-login-form input[type="submit"] {
	width: 100%;
	padding: 14px;
	background: #1a1a2e;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .3px;
	cursor: pointer;
	transition: background .15s;
	-webkit-appearance: none;
	appearance: none;
}

.ndp-customer-login #ndp-customer-login-form input[type="submit"]:hover {
	background: #2d2d4e;
}

/* ── Already logged-in state ─────────────────────────────────────────────── */

.ndp-customer-login__logged-in {
	text-align: center;
	padding: 12px 0;
}

.ndp-customer-login__logged-in p {
	color: #6b7280;
	margin-bottom: 16px;
	font-size: 15px;
}

.ndp-customer-login__wallet-link {
	display: inline-block;
	padding: 12px 28px;
	background: #1a1a2e;
	color: #fff !important;
	border-radius: 6px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: background .15s;
}

.ndp-customer-login__wallet-link:hover {
	background: #2d2d4e;
	color: #fff !important;
}

/* ── Login error message ─────────────────────────────────────────────────── */

.ndp-login__error {
	margin-bottom: 20px;
	padding: 12px 16px;
	background: #fff5f5;
	border: 1px solid #f5c6cb;
	border-radius: 6px;
	color: #c0392b;
	font-size: 14px;
	line-height: 1.5;
}

.ndp-login__error p {
	margin: 0;
}
