* {
	box-sizing: border-box;
}

body {
	background-color: Bisque;
}
h1 {
	text-align: center;  
	color:#A00;
}
h3 {
	text-align: right;
	padding:0;
	margin:0;
	/*color:#A00;*/
}
pre {
	text-align: center;  
	font-size: 22px;
	color:#000;
}

#regForm {
	background-color: #ffffff;
	margin: 2px auto;
	font-family: Raleway;
	padding: 2px;
	width: 96%;
	min-width: 300px;
}

input {
	padding: 10px;
	width: 95%;
	font-size: 17px;
	font-family: Raleway;
	border: 1px solid PeachPuff;
}

textarea {
	padding: 10px;
	width: 95%;
	font-size: 20px;
	font-family: Raleway;
	border: 1px solid PeachPuff;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
	background-color: #ffdddd;
}

textarea.invalid {
	background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
	display: none;
	font-size: 25px;
	color:#A00;
}

button {
	background-color: #ff9800;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	font-size: 17px;
	font-family: Raleway;
	cursor: pointer;
}

button:hover {
	opacity: 0.8;
}

#prevBtn {
	background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border: none;  
	border-radius: 50%;
	display: inline-block;
	opacity: 0.5;
}

.step.active {
	opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
	/*background-color: #04AA6D;*/
	background-color: #A00;
}
	
	
p,
label {
	text-align: right;
	font: 1rem 'Fira Sans', sans-serif;
	font-size: 20px;
}

input {
	margin: .3rem;
	font: 1.2rem 'Fira Sans', sans-serif;
	text-align: right;
}	

/* CHECKBOX */
.check_box {
	font: 2.5rem 'Fira Sans', sans-serif;
}
