body, canvas, div, form, input {
margin: auto;
box-sizing: border-box;
font-family: "Lato", sans-serif;
		}
#wrapper {
			width: 100%;
			padding: 1px;
		}
canvas {
			position: relative;
			margin: 1px;
			margin-left: 0px;
			border: 1px solid #3a87ad;
		}
h1, p {
			padding-left: 2px;
			width: 100%;
			margin: 0 auto;
		}
#controlPanel {
			margin: 2px;
		}
#saveSignature {
			display: none;
		}


.hosigned{
	width:250px;
	float:left;
}

img{
	margin-left:auto;
	margin-right:auto;
	display:block;
}

.signature{
	width:250px;
	height:150px;
	border:0px solid lightgrey;
	margin-left:0px;
}


p{
	text-align:center;
	display:block;
	line-height: 1;
	font-size:18px;
}
h1{
	text-align:center;
	display:block;
	line-height: 1;
}

h4{
	text-align:center;
	display:block;
	font-weight:lighter;
	line-height: 1;
}

h3{
	
	display:block;
	font-weight:bold;
	line-height: 1;
	font-size:30px;
	
}


label{
	font-size:20px;
	font-weight:bold;
}

table{
	width:1200px;
	margin-left:auto;
	margin-right:auto;
	border-collapse:collapse;
}
td{width:100%;}


input[type="text"]{
	width:450px;
	height:40px;
	border:solid 1px lightgrey;
	font-size:25px;
	border-radius:5px;
	
}

input[type="text"]:focus{
	outline:solid 1px grey;
}

input[type="date"]{
	width:450px;
	height:40px;
	border:solid 1px lightgrey;
	font-size:25px;
}

input[type="file"]{
	width:450px;
	height:40px;
	
	font-size:18px;
}

::-webkit-file-upload-button {
		width:200px;
	height:40px;
  background: #e67817;
border:solid 1px lightgrey;
font-size:25px;
border-radius:6px;
color:white;
cursor:pointer;
transition:1s;
}

::-webkit-file-upload-button:hover {  background: orange;}

textarea{
	width:650px;
	height:120px;
	border:solid 1px lightgrey;
	font-size:25px;
}

.star{
	font-size:25px;
	color:red;
	font-weight:bold;
}


.buttonsignature{
  background-color: #6fafd6; 
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor:pointer;
  width:468px;
}
.buttonsignature:hover{background:blue;}

.button{
  background-color: #e69b32; 
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor:pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.button:hover{background:orange;}

.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border:1px solid grey;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}




@media (min-width: 768px) {
	body{padding:20px;}
}