* {
	margin: 0;
	padding: 0;
}

body {
	background: url(blue.jpg);
	background-size: cover;
	height: auto;
	font-family: sans-serif;
}

.container {
	max-width: 800px;
	height: 600px;
	background: #fff;
	margin: 50px auto;
	box-sizing: border-box;
	padding: 40px;
	box-shadow: 0 0 20px rgba(72,98,85,0.6);
}

.container p {
	text-transform: uppercase;
	text-align: center;
	font-size: 45px
	margin-bottom: 20px;
	color: rgb(0,0,0);
	letter-spacing: 1px;
}

.input, .msg .area {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 25px;
	border: 2px solid #e9eaea;
	font-size: 14px;
	border-radius: 5px;
	outline: none;
	transition: all 0.5s ease;
}

.login .input {
	width: 48%;
	float: left;
	margin-right: 4%;
}

.login .input:last-child {
	margin-right: 0;
}

.msg .area {
	height: 200px;
	font-family: sans-serif;
}

.btn {
	width: 250px;
	background:	#00BFFF;
	height: 50px;
	text-align: center;
	line-height: 50px;
	color: rgb(0,0,0);
	text-transform: uppercase;
	margin: 0 auto;
	cursor: pointer;
	border-radius: 5px;
}

.input:focus,
.msg .area:focus {
	border: 2px solid #00BFFF;
	font-family: sans-serif;
}