html { 
  background: url(../_common/background/space.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

body {
  background-image: url(../_common/background/space.png) no-repeat center center fixed;
}

#login-button img, #container img {
  display: block;
  margin: auto;
  width: 100%;
  height: auto;
}

#login-button{
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  margin: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(3,3,3,.8);
  overflow: hidden;
  opacity: 0.4;
  box-shadow: 10px 10px 30px #000;}

/* Login container */
#container{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 260px;
  height: 300px;
  border-radius: 5px;
  background: rgba(3,3,3,0.25);
  box-shadow: 1px 1px 50px #000;
  display: none;
}

.close-btn{
  position: absolute;
  cursor: pointer;
  font-family: 'Open Sans Condensed', sans-serif;
  line-height: 18px;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 10px;
  opacity: .2;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.close-btn:hover{
  opacity: .5;
}

/* Heading */
#forgotten-container h1, #container h1, #new-account h1, #new-password h1{
  font-family: 'Open Sans Condensed', sans-serif;
  position: relative;
  margin-top: 0px;
  text-align: center;
  font-size: 40px;
  color: #ddd;
  text-shadow: 3px 3px 10px #000;
}

/* Inputs */
form a,
form input{
  font-family: 'Open Sans Condensed', sans-serif;
  text-decoration: none;
  position: relative;
  width: 80%;
  display: block;
  margin: 9px auto;
  font-size: 17px;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background: rgba(3,3,3,.1);
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

form input:focus{
  outline: none;
  box-shadow: 3px 3px 10px #333;
  background: rgba(206, 27, 40, 0.25);
}
form input:hover{
  outline: none;
  box-shadow: 3px 3px 10px #333;
  background: rgba(206, 27, 40, 0.25);
}

/* Placeholders */
::-webkit-input-placeholder {
   color: #aaa;  }
:-moz-placeholder { /* Firefox 18- */
   color: #aaa;  }
::-moz-placeholder {  /* Firefox 19+ */
   color: #aaa;  }
:-ms-input-placeholder {  
   color: #aaa;  }

/* Link */
form a{
  font-family: 'Open Sans Condensed', sans-serif;
  text-align: center;
  padding: 4px 8px;
  background: rgba(206, 27, 40, 0.25);
}

form a:hover{
  opacity: 0.7;
}

#remember-container{
  position: relative;
  margin: -5px 20px;
}
#mdp{
  position: relative;
  margin: -5px 20px;
}

.checkbox {
  position: relative;
  cursor: pointer;
  padding-left: 5px;
	border-radius: 4px;
  background: rgba(85, 85, 85,1);
	display: inline-block;
  width: 16px;
  height: 15px;
}

.checkbox:checked:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.checkbox:checked {
  background: rgba(85, 85, 85,1);
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.5);
	color: #fff;
}

.checkbox:checked:after {
	content: '\2714';
	font-size: 10px;
	position: absolute;
	top: 0px;
	left: 4px;
	color: #fff;
}

#remember{
  position: absolute;
  font-size: 13px;
  font-family: 'Hind', sans-serif;
  color: rgba(255,255,255,.5);
  top: 7px;
  left: 20px;
}

#new{
  color: rgba(255, 255, 255, 0.609);
  position: absolute;
  left: 0px;
  top: 8px;
  font-size: 12px;
  font-family: 'Hind', sans-serif;
  cursor: pointer;
}
#forgotten{
  color: rgba(255, 255, 255, 0.609);
  position: absolute;
  right: 0px;
  top: 8px;
  font-size: 12px;
  font-family: 'Hind', sans-serif;
  cursor: pointer;
}
#newpass {
  color: rgba(255, 255, 255, 0.609);
  position: absolute;
  right: 0px;
  top: 24px;
  font-size: 12px;
  font-family: 'Hind', sans-serif;
  cursor: pointer;
}

#newpass:hover, #new:hover, #forgotten:hover{
  color: rgba(255, 255, 255, 1);
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#forgotten-container{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 260px;
  height: 260px;
  border-radius: 10px;
  background: rgba(3,3,3,0.25);
  box-shadow: 1px 1px 50px #000;
  display: none;
}

#forgotten-container img{
  margin-left: 20px;
  margin-top: 5px;
  position: absolute;
  width: 40px;
  height: 40px;

}
#new-account img, #new-password img{
  margin-left: 20px;
  margin-top: 5px;
  position: absolute;
  width: 40px;
  height: 40px;

}
.orange-btn{
  background: rgba(87,198,255,.5);
}

#new-account{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 260px;
  height: 350px;
  border-radius: 10px;
  background: rgba(3,3,3,0.25);
  box-shadow: 1px 1px 50px #000;
  display: none;
}
#new-password{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 260px;
  height: 350px;
  border-radius: 10px;
  background: rgba(3,3,3,0.25);
  box-shadow: 1px 1px 50px #000;
  display: none;
}



.close-new{
  position: absolute;
  cursor: pointer;
  font-family: 'Open Sans Condensed', sans-serif;
  line-height: 18px;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  text-align: center;
  border-radius: 10px;
  opacity: .2;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.close-new:hover{
  opacity: .5;
}

#container-error{
  position: absolute;
  top: -35rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 500px;
  height: 100px;
  border-radius: 5px;
  background: rgba(3,3,3,0.25);
  box-shadow: 1px 1px 50px #000;
  border: 1px solid #000000;
  display: table-cell;
  vertical-align: middle;
}

#container-error h2 {  
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  color: rgba(206, 27, 40, 1);
  font-size: 20px;
  
}