</*

Denver Lifecasting Form Style Sheet

*/

	form {
	font-size: 1.5em;
	}

	textarea {
			width: 80%;
			font-size: 1.5em;
			font-family: inherit;
			font-weight: bold;
			color: navy;
			opacity: 1;
			margin: 0.5em;
		}				
		
	input[type="checkbox"] {
		transform: scale(1.75);
		vertical-align: 6px;
		}
			
	.buttonMouse, input[type="submit"]{
		font-size: 1.5em;
		border-radius: 10px;
		padding: 10px 20px;
		background-color: green;
		color: white;
		box-shadow: 5px 5px 0 0 rgba(0,0,0,5);
		}
		
	.buttonMouse:hover, input[type="submit"]:hover {
		background-color: yellow;
		color: black;
		box-shadow: 5px 5px 0 0 rgba(100,100,100,5);
		}
		
	#spinner {
	  margin-top: 15px;
	  margin-bottom: 2em;
	  width: 30px;
	  height: 30px;
	  border: 4px solid #eee;
	  border-top: 4px solid #4caf50;
	  border-radius: 50%;
	  animation: spin 1s linear infinite;
	}

	@keyframes spin {
	  to { transform: rotate(360deg); }
	}

