body{
    background-color: #cccccc; /* Used if the image is unavailable */
  height: 1000px; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */ 
}


/*login_f ################## */
.login_f_con{
    
}

form#login_f{
	height:270px;
	border-radius:10px;
    animation: fadeInLeft 1s;
    margin-top: 200px;

}



form#login_f input[type="text"],input[type="password"]{
	margin:10px;
	padding:5px;
	font-weight:bold;
	color: #fff;
    font-size: 2em;
    border: none;
    background: none;
    border: 1px red solid;
    width: 100%;
}
form#login_f input[type="checkbox"]{
    margin-left: 10px;
}
form#login_f input[type="submit"]{
	background:#147a44;
	color:#fff;
	border-radius:10px;
    width: 100%;
    font-size: 2em;
    margin: 10px;
}
form#login_f input[type="submit"]:hover{
	background:#21a05c;
}
/*login_f End ##################*/




/*keyframe ###########################*/
/*chance_bg1*/
@keyframes chance_bg{
	50%{background:green;},
	100%{background:red;},
}

/*fadeInLeft*/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/*keyframe ###########################End */