.form-container {
	font-family: sans-serif;
	background-color: white;
	font-size: 16px;
	font-style: normal;
	padding: 10px 0 20px 20px;
	margin-bottom: 40px;
	margin-top: -20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	/* width: 95%; */
	width: 100%;
	text-align: center;
}

label {
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

input {
	font-family: sans-serif;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	box-sizing: border-box;
}

input:focus
{
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

button {
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s;
}

button:hover {
	background-color: #0056b3;
}
