html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("images/img.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("images/img.jpg");
  background-size: cover;
  background-position: center;
}

.wrapper {
  width: 515px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  color: white;
}

.wrapper header {
  height: 100px;
}

.wrapper .main-body {
  min-height: 100px;
  width: 380px;
  margin: 0 auto;
}

.wrapper .main-body a {
  text-decoration: none;
  color: #FF4F81;
}

.wrapper .main-body a:hover {
  color: #3BE8B0;
  text-decoration: underline;
}

.wrapper .main-body .inp {
  width: calc(100% - 30px);
  padding: 11px 15px;
  border: none;
  border-radius: 10rem;
  margin-bottom: 30px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(150, 150, 150, 0.5)));
  background: linear-gradient(rgba(150, 150, 150, 0.5));
  color: white;
  font-size: 12pt;
  outline: none;
}

.wrapper .main-body .inp::-webkit-input-placeholder {
  color: white;
}

.wrapper .main-body .inp:-ms-input-placeholder {
  color: white;
}

.wrapper .main-body .inp::-ms-input-placeholder {
  color: white;
}

.wrapper .main-body .inp::placeholder {
  color: white;
}

.wrapper .main-body .check {
  margin-bottom: 30px;
}

.wrapper .main-body .btn .lgnbtn {
  width: 100%;
  padding: 9px 15px;
  border: none;
  border-radius: 10rem;
  text-align: center;
  margin-top: 20px;
  background: #3BE8B0;
  color: white;
}

.wrapper .main-body .btn .lgnbtn:hover {
  background: #FF4F81;
}

.wrapper .main-body .lnk {
  margin-top: 15px;
}

.wrapper footer {
  height: 100px;
  margin-top: 40px;
}

.wrapper footer a {
  text-decoration: none;
  color: white;
}

.wrapper footer a:hover {
  color: #3BE8B0;
}

@media (max-width: 575px) {
  .wrapper {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    min-height: 100%;
    overflow: hidden;
  }
  .wrapper header {
    margin-top: 50px;
  }
  .wrapper .main-body {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */