* {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  background-image: url("gym.png");
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.text {
  font-size: 66px;
  font-weight: bold;
  color: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
}

p, .text a {
  color: #303030;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 25px;
  border-radius: 10px;
  -webkit-transition: .5s;
  transition: .5s;
  text-decoration: none;
}

.social {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.social img {
  height: 70px;
  -webkit-transition: .3s;
  transition: .3s;
}

.social img:hover {
  scale: 1.15;
}

#mofb {
  display: none;
}

.checkValid {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 300px;
  height: 100px;
}

form {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form input {
  border-radius: 5px;
  border: 0;
  margin-top: 10px;
  font-size: 22px;
  text-align: center;
  padding: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

form button {
  margin-top: 10px;
  background-color: white;
  border-radius: 5px;
  border: 0;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0;
  -webkit-transition: .5s;
  transition: .5s;
}

iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.validStatus {
  width: 100%;
  overflow: hidden;
}

#loading {
  overflow: hidden;
  max-width: 50px;
  max-height: auto;
}

form button:hover {
  background-color: #fde8e8;
}

.active {
  background-color: green;
}

.inactive {
  background-color: red;
}

@media only screen and (max-width: 600px) {
  #pcfb {
    display: none;
  }
  #mofb {
    display: inline;
  }
  .checkValid {
    left: auto;
    right: auto;
  }
}
/*# sourceMappingURL=style.css.map */