﻿
body {
	background-color: #f9f9f9;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}

.login-container {
	display: flex;
	background-color: #f1f2ed;
	background-attachment: fixed;
	background-position: center center;
	border-radius: 30px;
}

.login-form {
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	flex-direction: column;
}

h2 {
	text-align: center;
	color: #333;
}

form {
	width: 400px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 15px;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #666;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 1px solid #ccc;
}

input[type="submit"] {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	color: #fff;
	background-color: #333;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

	input[type="submit"]:hover {
		background-color: #555;
	}

p {
	font-weight: 700;
	text-align: center;
	margin-top: 20px;
}

	p a {
		color: #333;
		text-decoration: none;
	}

.tree-container {
	flex: 1;
	display: flex;
	background-image: url("../img/vintage-tree-illustration.jpg");
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.validation-summary-errors ul {
	padding-left: 0;
	list-style: none;
	font-weight: 600;
	color: #d18331;
	padding-top: 30px;
	padding-bottom: 30px;
}

.field-validation-error {
	font-weight: 600;
	color: #d18331;
}

@media (max-width: 600px) {
	.login-container {
		flex-direction: column;
	}

	.login-form {
		padding: 10px;
	}

	form {
		width: 100%;
	}

	.tree-container {
		display: none;
	}
}
