* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--brand-lime: #BFFF00;
	--text-dark: #0f172a;
	--text-muted: #475569;
	--panel-dark: #0b4f56;
	--panel-dark-2: #083f45;
	--surface: #ffffff;
	--border: #e2e8f0;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: #f8fafc;
	min-height: 100vh;
	color: var(--text-dark);
}

.layout {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.left-panel {
	background: var(--surface);
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 20px;
	color: var(--text-dark);
}

.content {
	max-width: 440px;
	margin: 0 auto;
	width: 100%;
}

.title {
	font-size: 40px;
	line-height: 1.1;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.subtitle {
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 28px;
}

.card {
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.form-group {
	margin-bottom: 16px;
}

label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.input-wrap {
	position: relative;
}

.input-wrap i {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
}

input[type="email"] {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 16px;
	padding: 12px 12px 12px 40px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="email"]:focus {
	border-color: var(--brand-lime);
	box-shadow: 0 0 0 3px rgba(191, 255, 0, 0.25);
}

.submit-btn {
	width: 100%;
	border: none;
	border-radius: 10px;
	background: var(--brand-lime);
	color: #111827;
	font-size: 15px;
	font-weight: 700;
	padding: 13px 16px;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease;
	margin-top: 6px;
}

.submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(191, 255, 0, 0.45);
}

.submit-btn:active {
	transform: translateY(0);
}

.hint {
	margin-top: 14px;
	font-size: 13px;
	color: #334155;
	background: rgba(191, 255, 0, 0.15);
	border: 1px solid rgba(191, 255, 0, 0.45);
	border-radius: 10px;
	padding: 12px;
}

.icon-gap {
	margin-right: 8px;
}

.messages-container {
	margin-bottom: 14px;
}

.alert {
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 14px;
	margin-bottom: 8px;
}

.alert-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
}

.alert-success {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #166534;
}

.footer {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #64748b;
}

.right-panel {
	background: linear-gradient(160deg, var(--panel-dark), var(--panel-dark-2));
	color: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px;
}

.right-content {
	max-width: 460px;
}

.right-content h2 {
	font-size: 44px;
	line-height: 1.1;
	margin-bottom: 14px;
}

.right-content p {
	font-size: 16px;
	line-height: 1.55;
	color: rgba(248, 250, 252, 0.88);
}

.accent-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--brand-lime);
	display: inline-block;
	margin-right: 8px;
}

@media (max-width: 960px) {
	.layout {
		grid-template-columns: 1fr;
	}

	.right-panel {
		display: none;
	}

	.left-panel {
		padding: 28px 18px;
	}

	.title {
		font-size: 32px;
	}

	.footer {
		margin-top: 24px;
	}
}
