body {
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
  'Helvetica Neue', 'Ubuntu', sans-serif;
  height: 100vh;
  margin: 0;
     background-image: url(https://www.irishbaptist.org/images/B-bg-grad.png);
    background-repeat: repeat-x;
    background-position: center 0px;
    background-attachment: fixed;
}

.container.abci-container {
    max-width: 600px!important;
}

p {
    font-size: 0.8em;
}

section {
  margin: 2em;
}
.product-panel{
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2em;
    border: solid 3px #365a78;
}

.logo {
    max-width: 100%;
}
.ga-logo{
    max-width: 80px;
    float:left;
}

.formbox {
    padding: 0.8em;
    background-color: #C0C0C0;
    border-radius: 12px;
    margin-bottom: 2em;
}
label {
    font-weight: 700;
}
.form-group.row {
    border: solid 1px #959595;
    border-radius: 5px;
    margin: 6px 0;
    padding: 6px 0;
}

.card p {
    font-size: 1rem;
}

button {

  background: #556cd6;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
button:hover {
  opacity: 0.8;
}

/* SPINNER UPLOADER OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1050;
  visibility: hidden;
  background: rgba(0,0,0,0.5);
}
.overlay div.holder {
    width: 100%;
    height: 100%;
    padding-top: 40vh;
}

.spinner-border{
    width: 10rem;
    height: 10rem;
    border: 0.3em dashed #fff;
    border-right-color: transparent;
  }

.overlay.show{
    visibility: visible;
}

@media screen and (min-width:769px){
   body {
       display: flex;
   }
   .product-panel{
       min-width: 600px;
   }

   .logo {
    max-width: 280px;
}

}