body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

/* Container for the weather station image */
.station-container {
	width: 90vw; /* Use 90% of the viewport width to fit on small screens */
	max-width: 600px; /* Cap the width for larger screens */
	aspect-ratio: 1 / 1.5; /* Maintain the image's aspect ratio (adjust based on your image) */
	background-image: url('../BackgroundStation.png'); 
	background-size: contain; /* Ensure the image scales without distortion */
	background-repeat: no-repeat;
	background-position: center;
	position: relative; /* Allows absolute positioning of children */
}

.form-wrapper {
	position: absolute;
	top: 10%; /* Adjust this to align the input with the green rectangle */
	left: 50%;
	transform: translateX(-50%); /* Center horizontally */
	width: 60%; /* Adjust based on the width of the green rectangle */
	text-align: center;
}

.form-input {
	width: 50%;
	padding: 12px;
	font-size: 24px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 10px;
	box-sizing: border-box;
	text-align:center;
}

/* Style the buttons */
.form-button, .form-button-scnd {
	padding: 10px 20px;
	margin-top: 10px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.form-button {
	background-color: #4CAF50; /* Green to match the station plate */
	color: white;
}

.form-button-scnd {
	background-color: #008CBA; /* Blue for the secondary button */
	color: white;
}

	.form-button:hover {
		background-color: #0056b3;
	}


	.form-button-scnd:hover {
		background-color: #43484d;
	}


@media (max-width: 768px) {
	.form-input {
		font-size: 18px;
		padding: 14px;
	}

	.form-button {
		font-size: 18px;
		padding: 14px;
	}
}

@media (max-width: 480px) {
	.form-input {
		font-size: 20px;
		padding: 16px;
	}

	.form-button {
		font-size: 20px;
		padding: 16px;
	}
}
