/* Reset default styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

/* Full-page layout */
body, html {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #dff0f0;
}

/* Main container */
.container {
	display: flex;
	width: 90%;
	max-width: 1000px;
	height: 80vh;
	background-color: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Left section (background & logo) */
.left-section {
	position: relative;
	width: 60%;
	background: url('../images/background1.png') no-repeat center center/cover;
}


/* Logo and text */
.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.logo img {
	width: 340px; /* Increased logo size */
	filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3)); /* Shadow effect */
}

.logo h1 {
	font-size: 36px;
	font-weight: bold;
	color: #7a40dd;
	text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}


/* Right section (login form) */
.right-section {
	width: 40%;
	background-color: #e4f6f6;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

/* Login form */
.login {
	width: 100%;
	max-width: 300px;
	text-align: center;
}

/* Input fields */
.login__field {
	display: flex;
	align-items: center;
	background: white;
	padding: 12px;
	margin-bottom: 15px;
	border-radius: 25px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.login__icon {
	width: 22px;
	margin-right: 10px;
	color: #7a40dd;
}

.login__input {
	width: 100%;
	border: none;
	outline: none;
	font-size: 14px;
	background: transparent;
}

/* Submit button */
.button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	padding: 12px;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	color: #7a40dd;
	border: none;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	width: 100%;
}

.button:hover {
	background: #dcdcdc;
}

.button__icon {
	width: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
	.container {
			flex-direction: column;
			height: auto;
	}
	.left-section {
			width: 100%;
			height: 300px;
	}
	.right-section {
			width: 100%;
			padding: 30px;
	}
	.logo img {
			width: 180px; /* Adjust for smaller screens */
	}

	.logo h1 {
		font-size: 26px;
		font-weight: bold;
		color: #7a40dd;
		text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	}
}
