#bjstealth-lp-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
}

#bjstealth-lp-modal[hidden] {
	display: none;
}

.bjstealth-lp-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.bjstealth-lp-dialog {
	position: relative;
	background: #ffffff;
	border-radius: 14px;
	border-top: 4px solid var(--bjstealth-primary);
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
	padding: 32px 36px;
	max-width: 560px;
	width: 90%;
	box-sizing: border-box;
}

.bjstealth-lp-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
	padding: 4px;
}

.bjstealth-lp-dialog h2 {
	margin: 0 0 12px;
	font-size: 20px;
	color: #222;
}

.bjstealth-lp-intro {
	color: #555;
	font-size: 14px;
	margin: 0 0 18px;
}

#bjstealth-lp-form label {
	display: block;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.06em;
	color: #6b7280;
	font-weight: 600;
	margin-bottom: 6px;
}

#bjstealth-lp-form input[type="text"] {
	width: 100%;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #d1d5db;
	font-size: 15px;
	box-sizing: border-box;
	margin-bottom: 18px;
}

#bjstealth-lp-form input[type="text"]:focus {
	border-color: var(--bjstealth-primary);
	outline: none;
	box-shadow: 0 0 0 1px var(--bjstealth-primary);
}

#bjstealth-lp-form button[type="submit"] {
	width: 100%;
	padding: 10px 20px;
	border-radius: 8px;
	background: var(--bjstealth-primary);
	border: 1px solid var(--bjstealth-primary);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

#bjstealth-lp-form button[type="submit"]:hover {
	opacity: 0.9;
}

#bjstealth-lp-form button[type="submit"]:disabled {
	opacity: 0.6;
	cursor: default;
}

.bjstealth-lp-message {
	font-size: 14px;
	color: #333;
	margin: 0;
}

/* The in-form trigger on the login page itself (not the modal) - an
   outlined "secondary" button so it doesn't compete with the primary
   Log In button just above it. */
.bjstealth-lp-trigger {
	display: block;
	clear: both;
	width: 100%;
	margin-top: 10px;
	padding: 9px 20px;
	border-radius: 8px;
	background: transparent;
	border: 1px solid var(--bjstealth-primary);
	color: var(--bjstealth-primary);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

.bjstealth-lp-trigger:hover,
.bjstealth-lp-trigger:focus {
	background: var(--bjstealth-primary);
	color: #ffffff;
}
