body{
	margin: 0;
	padding: 0;
	background: #fff;

	color: #fff;
	font-family: Arial;
	font-size: 12px;
}

.body{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
  background-image: url(../picture/evpu.gif);
	background-size: cover;
	-webkit-filter: blur(5px);
	z-index: 0;
}


.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}

.header{
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 280px);
	z-index: 2;
}

.header div{
	float: left;
	color: #191970;/*#5379fa;*/
	font-family: 'Exo', sans-serif;
	font-size: 45px;
	font-weight: 600;
}

.header div span{
  font-size: 25px;
	font-weight: 200;
  color: white !important;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.header {
  position: absolute;
  -webkit-animation-name: animName; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 7s; /* Safari 4.0 - 8.0 */
  -webkit-animation-delay: 0s; /* Safari 4.0 - 8.0 */
  -webkit-animation-timing-function: ease;
  animation-name: animName;
  animation-duration: 7s;
  animation-delay: 0s;
  animation-timing-function: ease;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes animName {
  0%   {left:0; top:calc(50% - 20px);}
  20%   {left:0; top:calc(50% - 20px);}
  //10%  {left:10%; top:calc(50%-20);}
  //30%  {left: calc(50% - 580px); top:calc(50% + 150px);}
  //70%  {left:calc(50% - 380px); top:calc(50% - 80px);}
  100% {left:calc(50% - 280px); top:calc(50% - 20px);}
}

/* Standard syntax */
@keyframes animName {
  0%   {left:0; top:calc(50% - 20px);}
  20%   {left:0; top:calc(50% - 20px);}
  //10%  {left:10%; top:calc(50%-20);}
  //30%  {left: calc(50% - 580px); top:calc(50% + 150px);}
  //70%  {left:calc(50% - 380px); top:calc(50% - 80px);}
  100% {left:calc(50% - 280px); top:calc(50% - 20px);}
}

 
.login{
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 30px);
	height: 150px;
	width: 350px;
	padding: 10px;
	z-index: 2;
  
  -webkit-animation-name: animLogin; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 2s; /* Safari 4.0 - 8.0 */
  -webkit-animation-delay: 0s; /* Safari 4.0 - 8.0 */
  -webkit-animation-timing-function: ease;
  animation-name: animLogin;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-timing-function: ease;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes animLogin {
  //0%   {-webkit-transform: rotateY(90deg);}
  //100% {-webkit-transform: rotateY(0deg);}
  0%   {-webkit-transform: scale(0.01,0.01);}
  100% {-webkit-transform: scale(1,1);}
}

/* Standard syntax */
@keyframes animLogin {
  //0%   {transform: rotateY(90deg);}
  //100% {transform: rotateY(0deg);}
  0%   {transform: scale(0.01,0.01);}
  100% {transform: scale(1,1);}  
}

.login input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 5px;
	color: #061306;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 5px;
	color: #061306;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=submit]{
	width: 260px;
	height: 35px;
	background: #5380ac;//#fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 5px;
	color: white;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=submit]:hover{
	opacity: 0.8;
}

.login input[type=submit]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=button]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
