@-webkit-keyframes stars {
  100% {
    background-position: 1200px 810px;
  }
}
@-moz-keyframes stars {
  100% {
    background-position: 1200px 810px;
  }
}
@-o-keyframes stars {
  100% {
    background-position: 1200px 810px;
  }
}
@keyframes stars {
  100% {
    background-position: 1200px 810px;
  }
}

@-webkit-keyframes clouds {
  100% {
    background-position: 0 100px;
  }
}
@-moz-keyframes clouds {
  100% {
    background-position: 0 100px;
  }
}
@-o-keyframes clouds {
  100% {
    background-position: 0 100px;
  }
}
@keyframes clouds {
  100% {
    background-position: 0 100px;
  }
}

body {
  background: url("/a/stars.jpg") repeat 0 0;
  margin: 0;
  padding: 0;
  
  -webkit-animation: stars 40s infinite;
  -moz-animation: stars 40s infinite;
  -o-animation: stars 40s infinite;
  animation: stars 40s infinite;
  
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}
.clouds {
  background: url("/a/clouds.png") repeat-x 756px 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  -webkit-animation: clouds 20s infinite;
  -moz-animation: clouds 20s infinite;
  -o-animation: clouds 20s infinite;
  animation: clouds 20s infinite;
  
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
}

.nebula {
  background: url("/a/nebula.png") no-repeat center top;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.moon {
  background: url("/a/moon.png") no-repeat scroll left bottom / 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.moon>img {
  display: block;
  margin: 150px auto 50px;
  width: 584px;
  max-width: 90%;
}

.formwrap {
  background: rgba(0,0,0,0.8);
  color: #fff;
  border: #ff6600 1px solid;
  border-radius: 20px;
  width: 584px;
  max-width: 90%;
  margin: 0 auto;
  padding: 40px;
}