body {
	margin: 0;
	padding-left: 12px;
	padding-right: 12px;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url('signup_banner.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--text-soft);
	font-family: var(--system-font-family);
}

.login-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	padding: 1rem;
	border-radius: var(--radius-md);
	background-color: var(--primary-bg);
	box-shadow: var(--shadow-card);
}

body > div > strong {
	display: none;
}

body > div > ul {
	list-style: none;
	display: flex;
	gap: 16px;
	margin: 0;
	padding: 0;
}

body > div > ul > li:first-child {
	margin-left: auto;
}

body > div > ul > li:last-child {
	margin-right: auto;
}

body > div > ul > li > a {
	padding: 0.5rem;
	color: var(--primary-accent);
	background-color: var(--primary-dark);
	border: 1.5px solid var(--primary-border);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: all 0.3s ease
}

body > div > ul > li > a:hover {
    filter: brightness(1.2);
}

h1 {
	margin: 0 0 1rem;
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.2;
}

p {
	margin: 0;
	line-height: 1.6;
}

a {
	color: var(--primary-accent);
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	text-decoration: underline;
	filter: brightness(1.2);
}

form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

input {
	width: calc(100% - 1rem);
	font-size: 1rem;
	font-family: inherit;
	border: none;
	border-radius: var(--radius-md);
	padding: 0.5rem;
	background-color: var(--emphasis-bg);
	color: var(--text-soft);
}

input:focus {
	outline: none;
}

label {
	display: none;
}

form > p:nth-child(4) {
	display: none;
}

button,
input[type='submit'] {
	width: 100%;
	padding: 0.5rem;
	color: var(--primary-accent);
	background-color: var(--primary-dark);
	border: 1.5px solid var(--primary-border);
	border-radius: var(--radius-md);
	text-decoration: none;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	transition: all 0.3s ease
}

button:hover,
input[type='submit']:hover {
    filter: brightness(1.2);
	text-decoration: underline;
}

@media (max-width: 1000px) {
    .login-container {
		width: 90%;
		padding: 1.25rem;
	}
}
