body {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(to top, #FFC861, #FAB328);
}
.options {
	display: flex;
	flex-direction: row;
	margin-top: 15px;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.options > button {
	width: 100px;
	padding: 8px 0px 8px 0px; 
	border-radius: 20px 20px 0px 0px;
	color: white;
}
.form {
	display: flex; 
	flex-direction: column;
	background-color: #00B6B1;
	align-items: center;
	justify-content: center;
	padding: 30px;
	gap:8px;	
	border: 5px solid black;
	border-radius: 25px;
	margin: 4px 0px 0px 0px;
}
.form>label {
	text-align: center;
	font-size: 29px;
	color: white;
	margin: 0px 0px 12px 0px;
}
.form>input {
	background-color: #BAB8B8;
	border-radius: 20px;
	border: none;
	margin: 5px 0px 5px 0px;
	font-size: 19px;
	padding: 5px;	
}
.form>button {
	background-color: #FFA500;
	color: white;
	padding: 10px;
	border-radius: 20px;
	font-size: 18px;
}
.error_message {
	font-size: 14px;
	color: red;
}
h1 {
	text-align: center;
	color: white;
	background-color: #6B6B6B;
	padding: 10px;
	border-radius: 18px;
}
