#spy {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
}

#spy .spy-container {
  width: 90%;
  margin: 100px auto;
  text-align: center;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

#spy .spy-title {
  font-size: 32px;
  font-weight: bold;
}

#spy .spy-close {
  position: absolute;
  top: 70px;
  right: 150px;
  cursor: pointer;
  font-size: 20px;
}

#spy form {
   margin-top: 120px;
}

#spy input {
  font-size: 40px;
  border: none;
  color: #fff;
  outline: none;
  background: transparent;
  border-bottom: 5px solid #fff;
  padding: 10px;
  /*width: 250px;*/
}

#spy button {
  background: none;
  font-size: 30px;
  color: #fff;
  border: none;
  cursor: pointer;
}

#spy input::-webkit-input-placeholder {
  color: #fff;
}

#spy input::-moz-placeholder {
  color: #fff;
}

#spy input:-ms-input-placeholder {
  color: #fff;
}

#spy input::placeholder {
  color: #fff;
}

@-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0
    }
    to {
      top: 0;
      opacity: 1
    }
}

@keyframes animatetop {
    from {
      top: -300px;
      opacity: 0
    }
    to {
      top: 0;
      opacity: 1
    }
}
