body{
	background: -webkit-linear-gradient(left, black, white);
	background-image: url(../images/Boracay_Background3.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #B3E5FC;
}

.container{
	display: flex;
	flex-direction: column!important;
	align-items: center;
	justify-content: center;
}

.container > div{
	box-sizing: border-box;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 30px;
	border-bottom: 3px solid white;
	width: 30%;
}

#logo{
	height: 150px;
}

.welcome{
	color: white;
	font-family: "Gotham Medium";
	letter-spacing: 10px;
}

h1{
	color: white;
	font-family: "Gotham Light";
	letter-spacing: 10px;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
}

a{
	box-sizing: border-box;
	font-family: "Gotham Light";
	font-weight: bold;
	letter-spacing: 5px;
	color: white;
	background-color: #0097A7;
	padding: 10px;
	border-radius: 5px;
	transition: 0.4s;
}

a:hover,
a:focus,
input[type=submit]:hover{
	color: white;
	text-decoration: none;
	background-color: #00E5FF;
}

form{
	width: 30%;
	background-color: rgba(0, 0, 0, 0.4);
	padding: 10px 3%;
	box-sizing: border-box;
}

input[type=text],
input[type=password]{
	color: #666;
	display: block;
	width: 100%;
	border-radius: 5%;
	border-style: none;
	box-shadow: -3px 3px 1px rgba(0,0,0,0.2);
	padding: 7px;
}

input[type=password]{
	margin-bottom: 10px;
}

input[type=submit]{
	display: block;
	width: 125px;
	font-family: "Gotham Light";
	font-weight: bold;
	letter-spacing: 5px;
	color: white;
	background-color: #0097A7;
	padding: 10px;
	border: none;
	border-radius: 5px;
	margin: 10px auto 0 auto;
	transition: 0.4s;
	box-sizing: border-box;
}

label{
	font-family: "Gotham Light";
	color: white;
	letter-spacing: 3px;
	margin-top: 20px;
}

.error{
	background-color: #E91E63;
	padding: 5px 10px;
	display: block;
	text-align: center;
	width: 100%;
	color: white;
	font-size: 0.8em;
	border-radius: 2px;
}