body{
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #9cb0ca;
}

.login-box{
	background: #dde3eb;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 350px;
}

.create-box{
	background: #dde3eb;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 500px;
}

.login-box h2, .create-box h2{
	text-align: center;
	margin-bottom: 1.5rem;
}

label{
	display: block;
	margin-bottom: 0.3rem;
	font-weight: bold;
}

input[type="email"],
input[type="password"],
input[type="text"] {
	width: 100%;
	padding: 0.6rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
}

button{
	width: 100%;
	padding: 0.8rem;
	border: none;
	border-radius: 6px;
	background-color: #007bff;
	color: white;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

button:hover{
	background-color: #0056b3;
}