body {
	margin: 0;
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #f0f2f5;
}

.container {
	display: flex;
	width: 800px;
	height: 500px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.welcome-section, .login-section {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.welcome-section {
	background: linear-gradient(135deg, #3f51b5, #5c6bc0);
	color: white;
	flex: 1;
	text-align: center;
}

.company-name {
	font-size: 1.2em;
	margin-bottom: 20px;
}

.welcome-section h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
}

.welcome-section p {
	max-width: 80%;
	line-height: 1.5;
}

.login-section {
	flex: 1;
	background-color: white;
}

.login-section h2 {
	margin-bottom: 20px;
	color: #3f51b5;
}

.login-section form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.login-section label {
	margin: 10px 0 5px;
	color: #3f51b5;
}

.login-section input {
	padding: 10px;
	margin-bottom: 5px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.error-message {
	color: red;
	font-size: 0.8em;
	height: 1.2em;
}

.keep-signed-in {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 20px;
}

.keep-signed-in input {
	margin-right: 10px;
}

.login-section button {
	padding: 10px;
	background-color: #3f51b5;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
}

.login-section button:hover {
	background-color: #2c3e90;
}

.member-link {
	margin-top: 20px;
}

.member-link a {
	color: #3f51b5;
	text-decoration: none;
}

.member-link a:hover {
	text-decoration: underline;
}


.test-section {
	background: balck;
	color: white;
	flex: 1;
	text-align: center;
}
