﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
}

.header {
	width: 100%;
	background-color: #edf4f6;
	/*text-align: center;*/
	padding: 10px 0;
	/*border-bottom: 2px ridge #edf4f6;*/
	border-bottom: 1px ridge maroon;
}

	.header img {
		width: 450px;
		height: auto;
	}

.container {
	display: flex;
	flex: 1;
	width: 100%;
	height: calc(100% - 70px); /* Adjust for header height */
}

.poster {
	flex: 1;
	background-color: #edf4f6 /*white*/; /*#f3f3f3*/
	display: flex;
	justify-content: center;
	align-items: center;
	/*border-right: 2px ridge #edf4f6;*/
	border-right: 1px ridge maroon;
}

	.poster img {
		width: 90%;
		height: auto;
		object-fit: cover;
	}

.login {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	/*background-color: #ffffff;*/
	background-color: #edf4f6;
}

.login-box {
	width: 80%;
	max-width: 400px;
	text-align: center;
}

h1 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	/*color: #ff0000;*/
	color: blue;
	text-shadow: 1px 1px #ddd;
}

p {
	margin-bottom: 1rem;
	color: #666;
}

form {
	display: flex;
	flex-direction: column;
}

input {
	margin-bottom: 1rem;
	padding: 10px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 5px;
}

button {
	padding: 10px;
	font-size: 1rem;
	background: linear-gradient(to right, #6a11cb, #2575fc);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

	button:hover {
		background: linear-gradient(to right, #2575fc, #6a11cb);
	}

.footer {
	margin-top: 1rem;
	font-size: 0.8rem;
	color: #aaa;
}
