.entry-page {
	min-height: 100dvh;
	display: grid;
	place-items: center;
	padding: 20px;
}

.entry-card {
	width: min(100%, 440px);
	padding: 28px 22px;
	border-radius: var(--radius-xl);
	background: var(--card);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
}
img {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}
.entry-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: #eff6ff;
	color: var(--blue-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.entry-card h1 {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.05;
	font-weight: 800;
}

.entry-card p {
	margin: 0 0 22px;
	font-size: 15px;
	line-height: 1.45;
	color: var(--muted);
}

.entry-error {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 14px;
	background: var(--danger-soft);
	color: var(--danger);
	font-size: 14px;
	font-weight: 700;
}

.entry-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.entry-form label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--muted);
}

.entry-form input {
	width: 100%;
	height: 56px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	font: inherit;
	font-size: 16px;
	color: var(--text);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.entry-form input::placeholder {
	color: #94a3b8;
}

.entry-form input:focus {
	border-color: #93c5fd;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.entry-form button {
	margin-top: 6px;
	height: 56px;
	border: 0;
	border-radius: var(--radius-lg);
	background: var(--blue);
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.12s ease;
}

.entry-form button:hover {
	background: var(--blue-dark);
}

.entry-form button:active {
	transform: translateY(1px);
}

@media (max-width: 640px) {
	.entry-page {
		padding: 14px;
	}

	.entry-card {
		padding: 22px 18px;
		border-radius: 20px;
	}

	.entry-card h1 {
		font-size: 26px;
	}
}

.entry-error[hidden] {
	display: none;
}