/** UCIH SC Form style **/
.ucih-sc-form label {
	display:flex;
	font-weight:500;
}
.scfRequired {
	color:red;
	font-size:1.2rem;
}
.ucih-sc-form input, .ucih-sc-form textarea, .ucih-sc-form select{
	border-radius:3px;
	display:flex;
	margin: 0 0 5px 0;
	padding:0.5rem;
	width:80%;
}
.ucih-sc-form input {
	appearance: checkbox !important;
}
.ucih-sc-form select {
	border-radius:3px;
}
.ucih-sc-form input.ui-helper-hidden {
    display: none;
}
.eachfield-wrapper {
	margin: 0.5rem 0;
}
.checkbox-wrapper{
	display:block;
	margin: 1rem 0;
}
.checkbox-wrapper input[type="radio"], .checkbox-wrapper input[type="checkbox"] {
	display: inline;
    vertical-align: middle;
    margin: 0 0.4rem;
	transform: scale(1.2); 
	width:auto;
}
.ucih-sc-form input[type="date"] {
	width:auto;
}
.ucih-sc-form input[type="hidden"] {
	margin:0;
	padding:0;
}
.ucih-sc-form input[type="submit"] {
    margin: 20px 0 0;
	font-size:1rem;
	padding:10px 20px;
	height:auto;
	width:auto;
}
.field-validation-error {
	color:red;
	display:block;
	margin-bottom:5px;
}