#musaForm {
	display: flex;
	justify-content: center;
	font-family: 'ExpressLightSSiLight', Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size:12px;
	padding:4px;
	background-color: white;
}

.musaFormCont {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 650px;
/* 	padding:20px; */
	border:2px solid #808080;
	font-size:120%;
	padding-bottom: 20px;
}

.musaFormHeader {
	width:100%;
	padding:16px;
	color:white;
	margin-bottom: 20px;
	text-align: center;
	font-size: 180%;
	background-color: #808080;	
	border-bottom: 2px solid #808080;
}

.musaFormSect {
/* 	margin:10px; */
	display: flex;
	flex-direction: column;
	padding:5px 25px;
	width:100%;
	min-height:50px;
}
.musaFormSect header {
	padding:8px 0px;
	font-size:110%;
	min-width:180px;
/* 	background-color: blue; */
}

.musaFormSect input[type="text"] {
	width: 100%; 
	padding: 10px 15px; 
	border: 0px; 
	border-bottom: 1px solid #808080; 
	border-radius: 0px; 
	box-sizing: border-box; 
	background-color: #f8f8f8;
}

.musaFormSect input[type="number"] {
	width: 100%; 
	padding: 10px 15px; 
	border: 0px; 
	border-bottom: 1px solid #808080; 
	border-radius: 0px; 
	box-sizing: border-box; 
	background-color: #F7F7F7;
}

.musaFormSect input[type="radio"] {	
	transform: scale(1.5);
	margin: 10px 5px 10px 5px;
}

.musaFormSect input {	
	padding: 5px;
	border: 1px solid #ee1919;
}

.musaFormSect select {
    width: auto;
    font-size: 145%;
}

.musaFormBtnCont {
	margin-top: 20px;
	padding:5px 20px;
	width:100%;
	height:50px;
	font-size: 140%;
}

.musaFormSect textarea{
	text-align: left;
	width: 100%;
	height: 100px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: vertical;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
	.musaFormCont {		
		width:90%;
	}
	.musaFormCont {

	}

	.musaFormSect {
		flex-direction: row;
		width: 100%;
		background:#3c3c3c 1px solid;
		border-radius: 5px;
/* 		background-color:blue; */
	}
}


/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	#musaForm {
		width:100%;
	}
	.musaFormCont {		

	}
	

	
}