* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #f0f0f0;
}

.login-form {
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 800px;
}

.main {
	display: flex;
	flex-direction: row;
	min-height: 400px; /* Increased minimum height */
}

.content, .form-img {
	flex-basis: 50%;
	padding: 3em; /* Increased padding */
}

.content {
	display: flex;
	flex-direction: column;
}

h1 {
	color: #3079ff;
	margin-bottom: 30px; /* Increased margin */
	text-align: center;
}

form {
	display: flex;
	flex-direction: column;
	gap: 15px; /* Increased gap between form elements */
}

.input {
	outline: auto;
	outline-color: rgb(236, 193, 51);
	padding: 15px 20px; /* Increased padding */
	border: 1px solid #ddd;
	border-radius: 35% initial;
	font-size: 16px;
}

.btn {
	background: #ffc401;
	color: #fff;
	border: none;
	padding: 13px; /* Increased padding */
	border-radius: 5px;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn:hover {
	background: #3079ff;
}

.account {
	margin-top: 30px; /* Increased margin */
	text-align: center;
}

.form-img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-img img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

p {
	color: #666;
	font-size: 16px;
	line-height: 25px;
	opacity: 0.6;
	text-align: center;
}

a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.main {
		flex-direction: column;
		min-height: auto; /* Reset min-height for mobile */
	}

	.content, .form-img {
		flex-basis: 100%;
		padding: 2em; /* Slightly reduced padding for mobile */
	}

	.form-img {
		order: -1;
	}
}