:root{
	--bg:#0b0b0b;
	--card:#111;
	--text:#ffffff;
	--muted:#bdbdbd;
	--border:#2a2a2a;
}

*{
	box-sizing:border-box;
}

body{
	margin:0;
	font-family:system-ui, Arial, sans-serif;
	background:#0b0b0b;
	color:var(--text);
	min-height:100vh;
	display:flex;
	flex-direction:colum;
	align-items:center;
	justify-content:center;
	padding:20px;
}

.card{
	max-width:600px;
	width:100%;
	background:#111;
	border:1px solid var(--border);
	border-radius:16px;
	padding:30px;
}

h1{
	margin-top:0;
}

.lead{
	color:var(--muted);
	line-height:1.6;
}

.field{
	margin:15px 0;
}

label{
	display:block;
	margin-bottom:6px;
}

input{
	width:100%;
	padding:12px;
	border:radius:10px;
	border:1px solid var(--border);
	background:#0f0f0f;
	color:white;
}

.grid{
	display:grid;
	grid-template-columns:1fr;
	gap:15px;
}

@media (min-width:600px){
	.grid{
		grid-template-columns:1fr 1fr;
	}
}

.btn{
	display:block;
	width:100%;
	margin-top:20px;
	padding:14px;
	background:white;
	color:black;
	text-align:center;
	font-weight:bold;
	border-radius:12px;
	text-decoration:none;
	border:none;
	cursor:pointer;
}

btn:hover{
	opacity:0.9;
}

.link{
	display:inline-block;
	margin-top:15px;
	color:var(--muted);
	text-decoration:none;
}

.footer{
	margin-top:20px;
	font-size:14px;
	color:var(--muted);
}