* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	background:grey;
	font-size: 12px;
	color: grey;
	font-family:"Roboto", Arial, sans-serif, helvetica;
}

.wrap {
	width: 90%;
	max-width: 850px;
	margin: auto;
}

form {
	width: 100%;
	margin: 50px 0;
	padding: 40px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 0 2px grey;
	border-top:2px solid grey;
}

H1 { color: darkblue }
H4 { text-align: center;
	 color: darkblue
	  }
H3 { color: darkblue }
H3 { text-align: left }
table {
  border: grey 1px solid;
  border-radius: 10px;
}
//table th {background-color: yellow;

 }

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="date"],
form textarea {
	border: 1px solid #cccccc;
	border-radius: 10px;
	padding: 5px;
	width: 100%;
	display: block;
	margin-bottom:10px;
	font-family:"Roboto", Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
	background: #FFFFFF;
	align-self: "left"
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus{
	border: 2px solid #262b65;
	padding: 15px;
}


form textarea {
	max-width: 100%;
	min-width: 100%;
	max-height: 300px;
	min-height: 150px;
}

.alert {
	padding: 1em;
	color:#fff;
	border-radius: 2px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert.error {
	background: #F2DEDE;
	border:1px solid #a94442;
	color: #a94442;
}

.alert.success {
	background: #4CAF50;
}

.btn,
#bt-submit{
	padding: 15px;
	background: grey;
	color:#E1E9FA;
	font-size: 1em;
	font-family:"Roboto", Arial, sans-serif, helvetica;
	border-radius: 10px;
	border:none;
	float: right;
	cursor: pointer;
}

#bt-submit[type="submit"]:hover{
	background: #E64A19;
}