.rb365-start {
	--rb365-primary: #ff801f;
	--rb365-primary-hover: #d9650f;
	--rb365-text: #202020;
	--rb365-muted: #5f5f5f;
	--rb365-surface: #ffffff;
	--rb365-border: #dddddd;
	--rb365-page-surface: rgba(243, 243, 243, 0.8);
	--rb365-backdrop-blur: 10px;
	box-sizing: border-box;
	max-width: 720px;
	margin: 0 auto;
	padding: 24px;
	color: var(--rb365-text);
	font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-color: #f3f3f3;
	background: var(--rb365-page-surface);
	backdrop-filter: blur(var(--rb365-backdrop-blur));
	-webkit-backdrop-filter: blur(var(--rb365-backdrop-blur));
	border-radius: 20px;
}

.rb365-start *,
.rb365-start *::before,
.rb365-start *::after {
	box-sizing: border-box;
}

.rb365-start-card {
	padding: 28px;
	background: var(--rb365-surface);
	border: 1px solid var(--rb365-border);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.rb365-start-title {
	margin: 0 0 12px;
	color: var(--rb365-text);
	font-size: clamp(2rem, 7vw, 3.25rem);
	line-height: 1.08;
}

.rb365-start-copy {
	margin: 0 0 24px;
	color: var(--rb365-muted);
	font-size: 1rem;
	line-height: 1.6;
}

.rb365-start-form {
	display: grid;
	gap: 14px;
}

.rb365-start-button {
	width: 100%;
	min-height: 52px;
	padding: 14px 20px;
	color: #ffffff;
	background: var(--rb365-primary);
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.rb365-start-button:hover,
.rb365-start-button:focus-visible {
	background: var(--rb365-primary-hover);
}

.rb365-start-button:focus-visible {
	outline: 3px solid rgba(255, 128, 31, 0.35);
	outline-offset: 3px;
}

.rb365-start-button:disabled {
	cursor: wait;
	opacity: 0.72;
}

.rb365-start-status {
	min-height: 1.5em;
	margin: 0;
	color: var(--rb365-muted);
	font-size: 0.95rem;
}

.rb365-start-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.rb365-start {
		padding: 36px;
	}

	.rb365-start-card {
		padding: 40px;
	}

	.rb365-start-button {
		width: auto;
		justify-self: start;
		min-width: 210px;
	}
}

.rb365-start-recovery { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--rb365-border); }
.rb365-start-link { padding: 0; color: var(--rb365-primary-hover); background: transparent; border: 0; font: inherit; font-weight: 700; cursor: pointer; }
.rb365-recovery-form { display: grid; gap: 10px; margin-top: 14px; }
.rb365-recovery-form input { min-height: 46px; padding: 10px 12px; border: 1px solid var(--rb365-border); border-radius: 10px; font: inherit; }
