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

body {
	font-family: Arial, sans-serif;
	height: 100vh;
	overflow: auto;
	position: relative;
}

.background {
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.content {
	position: relative;
	z-index: 2;
	min-height: calc(100vh - 200px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	color: white;
	text-align: center;
	padding: 20px;
}

.logo-container {
	margin-bottom: 20px;
}

.logo {
	max-width: 120px;
	max-height: 80px;
	object-fit: contain;
}

.bottom-login-form {
	position: relative;
	z-index: 3;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 25px;
	border-radius: 10px;
	width: 100%;
	margin: 0px auto;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.form-title {
	text-align: center;
	margin-bottom: 20px;
}

.form-title h3 {
	color: #333;
	font-size: 18px;
	margin: 0;
}

.form-group {
	margin-bottom: 15px;
	text-align: left;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.form-group label {
	margin-right: 10px;
	font-weight: bold;
	min-width: 60px;
	color: #333;
}

.form-group input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.submit-btn {
	background-color: rgba(121, 72, 234, 1);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	width: 100%;
	margin-top: 10px;
}

.submit-btn:hover {
	background-color:  rgba(121, 72, 234, 1);
}

h1 {
	font-size: 24px;
	margin-bottom: 20px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

p {
	font-size: 16px;
	line-height: 1.5;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}