body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.aligner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aligner-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.full-width {
  width: 100%;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.form-error {
  color: red;
  font-size: small;
  margin: 10px;
  text-align: right;
}

.pay-form {
  padding: 15px;
  margin: 70px auto;
}

.mrg-botton {
  margin-bottom: 30px;
}

.mgr-top {
  margin-top: 30px;
}

hr.py-divider {
  margin-bottom: 30px;
}

.input-field .prefix.active {
  color: #0d47a1;
}

.logo {
  display: block;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  max-width: 210px;
  height: 60px;
}

@media (max-width: 992px) {
  .pay-form {
    padding: 10px;
    margin: 20px auto;
  }

  .logo {
    margin-top: 0px;
    max-width: 200px;
    max-height: 57px;
  }
}

@media (max-width: 600px) {
  .pay-form {
    padding: 5px;
    margin: 10px auto;
  }

  .logo {
    margin-top: 0px;
    max-width: 180px;
    max-height: 51px;
  }
}

