.login-form {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: center;
}

.login-header {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 50px;
}

.login-header img {
	width: 300px;
}
.login-header h1 {
	color: #333;
	font-size: 2.5em;
	margin-top: 10px;
}

.login-input {
	border: 2px solid #333;
	border-radius: 8px;
	color: #333;
	font-size: 1em;
	margin-bottom: 20px;
	max-width: 300px;
	outline: none;
	padding: 15px;
	width: 100%;
}

.login-button {
	background-color: #ee665c;
	border-radius: 8px;
	color: white;
	font-size: 1em;
	max-width: 300px;
	width: 100%;
	padding: 15px;
	cursor: pointer;
}
.login-button:disabled {
	background-color: #eee;
	color: #aaa;
	cursor: auto;
}
