@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
	--primary: #61afef;
	--primary-dim: #4b89bd;
	--bg: #282c34;
	--bg-darker: #21252b;
	--text: #abb2bf;
	--text-muted: #5c6370;
	--error: #e06c75;
	--success: #98c379;
	--border-color: #3e4451;
	--terminal-font: 'JetBrains Mono', monospace;
}

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

body {
	background-color: var(--bg-darker);
	color: var(--text);
	font-family: var(--terminal-font);
	font-size: 15px;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 4rem 1rem;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 80ch;
	/* background: var(--bg);
	border: 1px solid var(--border-color);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); */
	position: relative;
	display: flex;
}

.content-wrapper {
	flex: 1;
	/* padding: 3rem 4rem; */
}

.hero {
	margin-bottom: 2.5rem;
}

pre.ascii-logo {
	font-family: monospace;
	font-size: 1.25rem;
	line-height: 1;
	color: white;
	white-space: pre;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.tagline {
	font-size: 1rem;
	color: var(--success);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.subtitle {
	font-size: 1rem;
	color: var(--text-muted);
}

.card {
	margin-bottom: 4rem;
	position: relative;
}

h2 {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: var(--primary);
	font-weight: 500;
	display: flex;
	align-items: center;
}

.info {
	margin-bottom: 2.5rem;
	background: rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	border-left: 3px solid var(--primary);
}

.info ul {
	list-style: none;
}

.info li {
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
}

.info li::before {
	content: "→";
	margin-right: 10px;
	color: var(--primary);
	opacity: 0.7;
}

.form-group {
	margin-bottom: 2rem;
}

label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

input {
	width: 100%;
	background: var(--bg-darker);
	border: 1px solid var(--border-color);
	color: var(--text);
	font-family: var(--terminal-font);
	font-size: 1rem;
	padding: 0.8rem 1rem;
	outline: none;
	transition: all 0.2s;
}

input:focus {
	border-color: var(--primary);
	background: rgba(97, 175, 239, 0.05);
}

small {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.preview {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 500;
}

.btn-primary {
	display: block;
	width: 100%;
	padding: 1rem;
	background: var(--primary);
	color: var(--bg-darker);
	border: none;
	font-family: var(--terminal-font);
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	margin-top: 2rem;
	transition: all 0.2s;
}

.btn-primary:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
	box-shadow: 0 5px 15px rgba(97, 175, 239, 0.3);
}

.signin-link {
	text-align: center;
	margin-top: 2.5rem;
	font-size: 0.95rem;
}

.signin-link a {
	color: var(--primary);
	text-decoration: none;
	border-bottom: 1px dashed var(--primary);
	padding-bottom: 2px;
}

.signin-link a:hover {
	border-bottom-style: solid;
}

.error {
	margin-top: 2rem;
	color: var(--error);
	font-size: 0.9rem;
	padding: 1rem;
	background: rgba(224, 108, 117, 0.1);
	border: 1px solid var(--error);
}

.success {
	margin-top: 2rem;
	color: var(--success);
	font-size: 0.9rem;
	padding: 1rem;
	background: rgba(152, 195, 121, 0.1);
	border: 1px solid var(--success);
}

.hidden {
	display: none !important;
}

@media (max-width: 768px) {
	body {
		padding: 2rem 0;
	}

	.container::before {
		display: none;
	}

	.content-wrapper {
		padding: 2rem;
	}

	pre.ascii-logo {
		font-size: 0.8rem;
	}
}

.footer {
	text-align: center;
}