<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: url(gh2.jpeg) no-repeat center center fixed;
	background-size: cover;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.form-container {
	background-color:  rgb(237, 226, 209,0.85);
	padding: 50px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form label {
	margin-top: 20px;
}

.form input {
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 5px;
	border: none;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.form button {
	padding: 10px;
	border-radius: 5px;
	border: none;
	background-color: #1c4d31;
    opacity: 50%;
	color: white;
	font-weight: bold;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.form button:hover {
	background-color: #aa0300;
}

.switch-form {
	margin-top: 20px;
	text-align: center;
}

.switch-form a {
	color: #aa0300;
	font-weight: bold;
	text-decoration: none;
	margin-left: 5px;
}

.switch-form a:hover {
	text-decoration: underline;
}

.hidden {
	display: none;
}

@media only screen and (max-width: 600px) {
	.form-container {
		padding: 30px;
	}

	.form input {
		width: 100%;
	}

	.form button {
		width: 100%;
	
</pre></body></html>