@charset "utf-8";
/* CSS Document */
body {
	background: #e9e9e9;
	font-family: Arial, sans-serif;
}

.login-box {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,.1);
	margin: 20px auto;
	padding: 20px;
	position: relative;
	width: 350px;
}

.login-box h2 {
	color: #333;
	font-size: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.user-box {
	position: relative;
}

.user-box input {
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
	color: #333;
	margin-bottom: 30px;
	border: none;
	border-bottom: 1px solid #333;
	outline: none;
	background: transparent;
}

.user-box label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
	font-size: 16px;
	color: #333;
	pointer-events: none;
	transition: .5s;
}

.user-box input:focus ~ label,
.user-box input:valid ~ label {
	top: -20px;
	left: 0;
	color: #03a9f4;
	font-size: 12px;
}

.login-box input[type="submit"] {
	background: #03a9f4;
	border: none;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	padding: 10px;
	margin-top: 20px;
}

.login-box a {
	color: #03a9f4;
	text-decoration: none;
	font-size: 14px;
}

.logo-container {
			text-align: center;
			margin-top: 60px;
		}

		.logo-container img {
			height: 60px;
			width: auto;
		}
		
		footer {
			text-align: center;
		}

