html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

.container {
	position: relative;
}

.row {
	display: flex;
	flex-wrap: nowrap;
}

.col {
	flex-grow: 1;
	width: 50%;
}

.image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    z-index: 2;
}

.login-box {
	background-color: #0f0f0f;
	padding: 40px;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 1;
	width: 80%;
	max-width: 400px;
	font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
}
.login-box h2 {
	margin-top: 0;
}

.login-box label {
	display: block;
	margin-bottom: 5px;
	color: #fff;
	text-align: left;
}

.login-box input[type="text"], .login-box input[type="password"] {
	display: block;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: none;
	margin-bottom: 10px;
}

.login-box input[type="submit"], .login-box button {
	background-color: #555;
	color: #fff;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.login-box input[type="text"], .login-box input[type="password"], .login-box button {
    background-color: #555;
}

.login-box input[type="submit"]:hover, .login-box button:hover {
	animation: shake 0.5s;
}

@keyframes shake {
	0% { transform: translateX(0); }
	25% { transform: translateX(5px); }
	50% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
	100% { transform: translateX(0); }
}

.register-button {
	margin-left: 10px;
}

.header-text {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px;
	font-family: 'Courier New', Courier, monospace;
	font-size: 30px;
	color: #aaa;
	z-index: 1;
}

footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}

.footer-line {
	border-top: 1px solid #ccc;
	margin-bottom: 10px;
}

.footer-text {
	font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    color: #aaa;
    text-align: center;
    margin-top: 10px;
}
