* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: 'Arial', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #121212;
	cursor: default;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.login-container {
	background-color: #1e1e1e;
	padding: 2rem;
	border-radius: 50px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
	height: 100%;
	max-height: 300px;
	width: 100%;
	max-width: 400px;
	text-align: center;
}

h2 {
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
	color: #d89ec4;
}

label {
	display: block;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: #d89ec4;
}

input {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border: none;
	border-radius: 5px;
	background-color: #2b2b2b;
	color: #d89ec4;
	font-size: 1rem;
	text-align: center;
}

input:focus {
	outline: none;
	background-color: #333;
}

button {
	width: 33%;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border: none;
	border-radius: 25px;
	background-color: #d89ec4;
	color: #f7f0f6;
	font-size: 1rem;
	transition: background-color 0.5s ease;
}

button:hover {
	background-color: #f1b3d1;
}

.error {
	color: #d89ec4;
	font-size: 1rem;
}

@media (max-width: 500px) {
	.login-container {
		padding: 1rem;
	}

	h2 {
		font-size: 2.5rem;
	}
}