@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@600&display=swap');

.form-style-1 {
	margin: 20px auto;
	width: 95%;
	padding: 20px;
	font: 14px "Noto Sans", sans-serif;
	border: #fff solid 2px;
}

.form-style-1 li {
	padding: 0;
	display: block;
	list-style: none;
	margin: 10px 0 0 0;
}

.form-style-1 label{
	margin:0 0 3px 0;
	padding:0px;
	display:block;
	font-size:16px;
	font-weight: bold;
}
.form-style-1 input[type=text], 
.form-style-1 input[type=date],
.form-style-1 input[type=datetime],
.form-style-1 input[type=number],
.form-style-1 input[type=search],
.form-style-1 input[type=time],
.form-style-1 input[type=url],
.form-style-1 input[type=email],
.form-style-1 input[type=password],
.form-style-1 textarea, 
.form-style-1 select {
	font-size: 18px;
	font-weight: 600;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border:2px solid #47a8f3;
	padding: 7px;
	margin:0px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	width: 320px;

	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;	
}
.form-style-1 input[type=radio] {
	-ms-transform: scale(1.6); /* IE 9 */
	-webkit-transform: scale(1.6); /* Chrome, Safari, Opera */
	transform: scale(1.6);
  }

.form-style-1 input[type=text]:focus, 
.form-style-1 input[type=date]:focus,
.form-style-1 input[type=datetime]:focus,
.form-style-1 input[type=number]:focus,
.form-style-1 input[type=search]:focus,
.form-style-1 input[type=time]:focus,
.form-style-1 input[type=url]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 input[type=password]:focus,

.form-style-1 textarea:focus, 
.form-style-1 select:focus{
	-moz-box-shadow: 0 0 8px #88D5E9;
	-webkit-box-shadow: 0 0 8px #88D5E9;
	box-shadow: 0 0 8px #88D5E9;
	border: 2px solid #88D5E9;
}
.form-style-1 field-half {
	width: 49%;
}
.form-style-1 field-third {
	width: 32%;
}

.form-style-1 field-full {
	width: 100%;
}
.form-style-1 field-select {
	width: 100%;
}
.form-style-1 field-textarea {
	height: 120px;
	width: 140px;
}
.form-style-1 input[type=submit], .form-style-1 input[type=button] {
	margin-top: 20px;
	background: #427fb4;
	padding: 8px 15px 8px 15px;

	border-radius: 8px;
	border: none;
	color: #fff;
	font-weight: 700;
}
.form-style-1 input[type=submit]:hover, .form-style-1 input[type=button]:hover {
	background: #4691A4;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
}
.form-style-1 .required {
	color:red;
}
.form-style-1-heading {
    font-weight: bold;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 3px;
}

.form-style-1 h2 {
	color: #427fb4;
}
.radio {
	font-size: 22px;
	padding:5px;
}