
 body { 
  background-image: url(images/bgn.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
  font-family: 'Lora', serif;
  max-width:1300px auto;
}
.wrap {
	width: 90%;
	max-width: 500px;
	margin: auto;
	margin-bottom: 100px;
}
form {
	width: 100%;
	margin: 20px 0;
	padding: 20px;
	background: #fff;
	opacity: 0.8;
	overflow: hidden;
	box-shadow: 0 0 3px grey;
	border-top: 4px solid #536dfe;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
	border: 1px solid #536dfe;
	border-radius: 2px;
	padding: 16px;
	width: 100%;
	display: block;
	margin-bottom: 20px;
	font-family: "Roboto", Arial, sans-serif, helvetica;
	font-size: 1em;
	color: #141938;
}
form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus {
	border: 2px solid #3f51b5;
	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,
form input[type="submit"]{
	padding: 15px;
	background: #ed572a;
	color: #e1e9fa;
	font-size: 1em;
	font-family: "Roboto", Arial, sans-serif, helvetica;
	border-radius: 2px;
	border: none;
	float: right;
	cursor: pointer;
}
form input[type="submit"]:hover{background: #e64a19;}



