body {
	background: green ;
	/*background-image: url("/img/bg_bank.png"), url("/img/bg_bank.png");*/
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	flex-direction: column;
}

*{
	font-family: sans-serif;
	box-sizing: border-box;
}

form {
	width: 400px;
	border: 2px solid #ccc;
	padding: 50px;
	background: #fff;
	border-radius: 15px;
	float: right;
	margin-right: 10px;
	border: none;
	
}
button:hover {
	opacity: .7;
}

h2 {
	text-align: center;
	margin-bottom: 40px;
}

input {
	display: block; 
	border: 2px solid #ccc;
	width: 95%;
	padding: 5px;
	margin: 5px auto;
	border-radius: 5px;
}

label {
	color: #888;
	font-size: 18px;
	padding: 5px;
}
select{
    border-radius: 3px;
    height: 25px;
    background-color: yellow;
    font-size: 18px;
    font-weight: bold;
    width: 100px;
   }

button {
	float: right;
	background: #555;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
}
button:hover {
	opacity: .7;
}
.error{
	background: #f2dede;
	color: #a94442;
	padding: 10px;
	width: 95%;
	border-radius: 5px;
	margin: 20px auto;
}
h1{
	text-align: center;
	color: #fff;
}
a{
	float: right;
	background: #555;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
	text-decoration: none;
}
a:hover {
	opacity: .7;
}
.home{
	width: 95%;
	justify-content: center;
	text-align: center;
}

