@import url('https://fonts.googleapis.com/css?family=Play');


body{
	background: url('../img/background.jpg') no-repeat center center fixed;
       -webkit-background-size: cover;
       -moz-background-size: cover;
       -o-background-size: cover;
       background-size: cover;
}

.container{

  background-color: rgba(186, 186, 186, 0.8);
  border-radius: 10px;
  color: white;
  width: 600px;
  margin-top: 80px;
  margin-left: auto;
  margin-right:auto;
  width:50%;
  padding: 10px 25px 25px 25px;
  text-align: center;
 

}
h1{
	color:white;
	font-family: 'Play', sans-serif;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}


.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 1em;
  max-width: 350px;
  width: calc(100% - 2em);
  vertical-align: top;
}

img{
 
  margin-left: auto;
  margin-right: auto;
  width: auto;
  margin-top: 20px;
}

@media screen and (max-width: 990px) {
  img {
margin-left: auto;
margin-right: auto;
width: 104%;
}
}

.input__field {
  position: relative;
  display: block;
  padding: 20px;
  width: 60%;
  border: none;
  border-radius: 0;
  background: #f0f0f0;
  color: #aaa;
  font-weight: bold;
  font-family: 'Play', sans-serif;
}

.input__field:focus {
  outline: none;
}

.input__label {
  display: inline;
  padding-bottom: 5px;
  text-align: left;
  width: 60%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Play', sans-serif;
  
}

.input__label-content {
  position: relative;
  display: block;
  width: 100%;
  color:white;
}

.input--hoshi {
  overflow: hidden;
}

.input__field--hoshi {
  margin-top: 1em;
  padding: 0.85em 0.15em;
  width: 100%;
  background: transparent;
  color: black;
}

.input__label--hoshi {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
}

.input__label-content--hoshi {
  position: absolute;
}

.input__label--hoshi::before,
.input__label--hoshi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  border-bottom: 1px solid #8A8A8A;
}

.input__label--hoshi::after {
  margin-top: 1px;
  border-bottom: 4px solid green;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.input__label--hoshi-color-1::after {
  border-color: green;
}



.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
  -webkit-animation: anim-1 0.3s forwards;
  animation: anim-1 0.3s forwards;
}

@-webkit-keyframes anim-1 {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -40%, 0);
    transform: translate3d(-1em, -40%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }
}

@keyframes anim-1 {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -40%, 0);
    transform: translate3d(-1em, -40%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }
}

.button_slide {
  color: #FFF;
  background-color: green;
  border-radius: 0px;
  margin-top: 20px;
  padding: 18px 36px;
  display: inline-block;
  border:none;
  font-family: 'Play', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0  #006400;
  -webkit-transition: ease-out 0.5s;
  -moz-transition: ease-out 0.5s;
  transition: ease-out 0.6s;
}

.slide_down:hover {
  box-shadow: inset 0 100px 0 0  #006400;
}

#register
{
 display:none;
}

#mask {
    display: none;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 999;

}

#mask h1{
text-align: center;
color:white;
margin-top: 300px;
opacity: 2;
font-size: 2em;
}

.wrapper{

text-align: center;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: 'Play', sans-serif;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable {
  padding-right: 35px;
}
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
li {
  list-style: none;
}

.center-on-page {
  position: relative;
  transform: translate(0);
  margin-right: auto;
  margin-left: auto;
  width: 50%;
  
}
.center-on-page input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.center-on-page label{
  position: relative;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 10px;
  line-height: 36px;
  cursor: pointer;
  font-family: 'Play', sans-serif;
}
.center-on-page label::before {
  content: " ";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #2E7D32;
  border-radius: 4px;
  z-index: -1;
}

/* Checked */
.center-on-page input[type="checkbox"]:checked + label {
  padding-left: 10px;
  color: #fff;
}
.center-on-page input[type="checkbox"]:checked + label::before {
  top: 0;
  width: 100%;
  height: 100%;
  background:#2E7D32;
  border:none;
}
/* Transition */
.center-on-page label,
.center-on-page label::before {
  -webkit-transition: .20s all ease;
  -o-transition: .20s all ease;
  transition: .20s all ease;
}

img[src="https://cdn.rawgit.com/000webhost/logo/e9bd13f7/footer-powered-by-000webhost-white2.png"]
{
  display:none;
}

a[title="Hosted on free web hosting 000webhost.com. Host your own website for FREE."]
{
  display:none;
}