/* Show error messages in red */

.error { color: red; }

body{
	margin: auto;;
	background-image: url("../img/vector1.png");
	background-repeat: no-repeat;
	background-size: 100%;

}
.container{
	width: 500px;
	height: 400px;
	text-align: center;
	background-color: rgba(52, 73, 94,0.7);
	border-radius: 4px;
	margin: 0 auto;
	margin-top: 150px;
}
.container img{
	width: 120px;
	height: 120px;
	margin-top: -60px;
	margin-bottom: 30px;

}
input[type="text"],input[type="password"]{
	height: 45px;
	width: 300px;
	font-size: 18px;
	border: none;
	margin-bottom: 20px;
	border-radius: 4px;
	background-color: #fff;
	padding-left: 40px;

}
.form-input::before{
	content: "\f007";
	position: absolute;
	font-family: "FontAwesome";
	padding-left: 7px;
	color: #9B59B6;
	padding-right: 5px;
	font-size: 35px;
}
.form-input:nth-child(2)::before{
	content: "\f023";
}
.btn-login{
	padding: 15px 30px;
	cursor: pointer;
	color: #fff;
	border-radius: 4px;
	border: none;
	background-color: #2ECC71;
	border-bottom: 4px solid #27AE60;
	margin-bottom: 20px;


}
.img-circle {
    border-radius: 50%;
}
p {
	font-size: 16px;
	color: #fff;

}
a {
	color: #faebd7;
}