@charset "utf-8";
/* CSS Document */

fieldset {
	margin: auto;
	width: 600px;
	border: 1px solid #002B2D;
	border-radius: 10px;
	padding: 20px;
}

body {
	background-color: lightblue;
	direction: rtl;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
}

legend {
	font-size: 20px;
	font-weight: bold;
	color: black;
	
	background-color: #ebdba0;
	padding: 5px 10px;
}

label {
	display: block;
	margin-top: 10px;
}

inout, select {
	margin: 5px 0;
	
}

.one {
	background-color: #84C0FF;
}

.two {
	background-color: #AED5FF;
}

select {
	color: #555;
}

select:invalid {
	color: #000000;
}

input[type="submit"], input[type="reset"] {
	background-color: #627DFF;
	color: black;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	margin: 5px;
}

input[type="submit"]:hover , input[type="reset"]:hover {
	background-color: #ebdba0;
}

input::placeholder {
	color: #999;
	opacity: 1;
	font-style: italic;
}
