#container {
	width: auto;
	/* max-width: 1200px; */
	margin: 10px auto;
	padding: 40px;
	background: #ffffff;
	border-radius: 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	font-family: 'Helvetica', 'Arial', sans-serif;
}

h1.heading {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e5e5e5;
	color: #333;
}

#container form {
	padding: 10px;
}

#container form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

#container form input[type=text],
#container form input[type=email],
#container form input[type=password],
#container form textarea {
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 20px;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	background-color: #f9f9f9;
	font-size: 15px;
	color: #333;
	transition: border-color 0.3s ease, background-color 0.3s ease;
	box-sizing: border-box;
}

#container form select {
	width: 100%;
	/* padding: 12px 16px; */
	margin-bottom: 20px;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	background-color: #f9f9f9;
	font-size: 15px;
	color: #333;
	transition: border-color 0.3s ease, background-color 0.3s ease;
	box-sizing: border-box;

	/* Only select gets the dropdown arrow */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7z%22%20fill%3D%22%23666%22/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 10px 7px;
	padding-right: 40px;
}

#container form input[type=text]:focus,
#container form input[type=email]:focus,
#container form input[type=password]:focus,
#container form textarea:focus,
#container form select:focus {
	border-color: #0d6efd;
	background-color: #fff;
	outline: none;
	box-shadow: none;
}

/* #container form input[type=submit] {
	padding: 14px 35px;
	background-color: #0d6efd;
	border: none;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#container form input[type=submit]:hover {
	background-color: #0b5ed7;
} */