body {
  height: 100vh;
  margin: 0;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.showcase::after {
  content: '';
  height: 100vh;
  width: 100%;
  background-color: #00b0aa;
  display: block;
}

.main_content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  margin-top: 105px;
  margin-left: -145px;
  width: 300px;
  height: 350px;
  text-align: center;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
  color: white;
  border: 2px solid white;
}

.main_content .logo {
  height: 200px;
  width: 200px;
}

#client_image {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  margin-top: -50px;
  border: 2px solid white;
}

.title {
  font-size: 1.5rem;
  margin-top: 1rem;
  display: inline-block;
}

.center {
  text-align: center;
  margin: auto;
}

#pin_form {
  color: white;
}

input[type="text"] {
  text-align: center;
}

input[type="text"]::-webkit-input-placeholder {
  text-align: center;
}

input[type="text"]:-ms-input-placeholder {
  text-align: center;
}

input[type="text"]::-ms-input-placeholder {
  text-align: center;
}

input[type="text"]::placeholder {
  text-align: center;
}

/* Small Screens */
@media (max-width: 560px) {
  .showcase::after {
    height: 100vh;
  }
  .main_content {
    top: 0px;
    margin-top: 50px;
    border: none;
  }
  .main_content .logo {
    height: 250px;
    width: 250px;
    margin-top: 25%;
  }
  .main_content .text {
    display: none;
  }
}

/* Landscape */
@media (max-height: 500px) {
  .showcase::after {
    height: 100vh;
    width: 100%;
    display: block;
  }
  .main_content {
    top: 0px;
    margin-top: 0px;
    border: none;
  }
  .main_content .logo {
    height: 100px;
    width: 100px;
    margin-top: 25%;
  }
}
/*# sourceMappingURL=style.css.map */