.rp-gate-overlay {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5rem 1rem;
}

.rp-gate-form {
	background: rgba(255, 255, 255, 0.92);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	text-align: center;
	max-width: 360px;
	width: 100%;
}

.rp-gate-form input[type="text"] {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.rp-gate-form button {
	width: 100%;
	padding: 0.85rem 1rem;
	border: none;
	border-radius: 8px;
	background: #1f6feb;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.rp-gate-form button:hover,
.rp-gate-form button:focus {
	background: #1249b0;
}

.rp-gate-error {
	margin-top: 1rem;
	color: #c62828;
	font-size: 0.95rem;
}

