* {
	padding:0;
}

body {
	background-color: #1D1725;
	background-image: url("../img/loginPageBg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

content {
	width:33%;
}

form {
	background-color: none;
	position: absolute;
	margin-top: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

input,button {
	display: block;
	margin: 0 auto;
	border-radius:6px;
	text-align:center;
	font-size: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
}

input {
	width: 375px;
	height: 50px;
	background-image: url('../img/textField_bg_medium.png');
	background-color: transparent;
	border:none;
}

button {
	width: 350px;
	height: 42px;
	background-image: url('../img/btnRed_large.png');
	color:white;
	cursor:pointer;
}

button:hover {
	background-image: url('../img/btnRed_large_hover.png');
}

h1 {
	font-variant:small-caps;
	color:#5a70d8;
	font-weight:lighter;
	text-shadow: 0px 0px 4px rgba(150, 150, 218, 1);
}

.error,.success {
	width:80%;
	margin:0 auto;
	border:1px solid black;
	font-size:16px;
	height:30px;
	line-height:30px;
	padding:5px;
}

.error img, .success img{
	height:80%;
	vertical-align: middle;
	margin-right:15px;
}

.error {
	background:#e48888;
	border-color:brown;
	color:#612121;
}

.success {
	background:#a0d8a0;
	border-color:green;
	color:#455f3a;
}