
#loginForm {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	background-color: rgba(0,0,0,.5);
	display: none;
	padding-top: 100px;
	box-sizing: border-box;
}

.close-btn {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 10px;
  right: 10px;
  background-image: url('../assets/images/close-btn.png');
  background-repeat: no-repeat;
  cursor: pointer;
}

.login-block {
  	position: relative;
	width: 320px;
	/*top: 100px;*/
	padding: 20px;
	background: #22d2f9;
	border-radius: 5px;
	/*border-top: 5px solid #ff656c;*/
	margin: 0 auto;
}

.login-block h1 {
	text-align: center;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 20px;
}

.login-block input {
	width: 100%;
	height: 42px;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 10px 0 10px;
	outline: none;
}

.login-block input:active, .login-block input:focus {
	border: 1px solid #671E75;
}

.login-block button {
	width: 100%;
	height: 40px;
	background: #671E75;
	box-sizing: border-box;
	border-radius: 5px;
	border: 0px;
	color: #66FF99;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	outline: none;
	cursor: pointer;
}

.login-block button:hover {
	background: #671E75;
}
