
.bitform {
  max-width: 520px;
  margin: 0 auto;
  background: transparent;
}

/* ================================
   INPUT FIELDS — EDITORIAL GLASS
================================ */

.bitform input[type="text"],
.bitform input[type="email"],
.bitform input[type="tel"] {

  width: 100%;
  padding: 20px 22px;

  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;

  background: transparent;

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.18);

  color: #000;

  transition:
    border .3s ease,
    box-shadow .4s ease,
    transform .3s ease;
}

/* Focus = quiet authority */

.bitform input:focus {
  border-color: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  outline: none;
  transform: translateY(-1px);
}

/* Remove autofill */

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important;
}

/* ================================
   PLACEHOLDER — SOFT FADE
================================ */

.bitform input::placeholder {
  color: rgba(0,0,0,.45);
  letter-spacing: .06em;
}

/* ================================
   BUTTON — LUXURY WORDMARK
================================ */

.bitform button,
.bitform input[type="submit"] {

  width: 100%;
  margin-top: 12px;

  background: #000;
  color: #fff;

  padding: 22px;

  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 500;

  letter-spacing: .38em;
  text-transform: uppercase;

  border-radius: 16px;
  border: none;

  cursor: pointer;

  transition:
    opacity .25s ease,
    transform .2s ease,
    box-shadow .3s ease;
}

.bitform button:hover,
.bitform input[type="submit"]:hover {
  opacity: .85;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.bitform button:active {
  transform: translateY(1px);
}

/* ================================
   ADDRESS AUTOCOMPLETE — BLACK VELVET
================================ */

#address-suggestions {

  margin-top: 10px;

  background: rgba(0,0,0,.96);

  border-radius: 18px;

  box-shadow:
    0 30px 70px rgba(0,0,0,.45);

  overflow: hidden;

  animation: lovelessFade .25s ease;
}

/* Each row */

#address-suggestions div {

  padding: 18px 22px;

  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: .06em;

  color: #fff;

  cursor: pointer;

  transition:
    background .2s ease,
    padding-left .25s ease;
}

#address-suggestions div + div {
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Hover = couture glide */

#address-suggestions div:hover {
  background: rgba(255,255,255,.06);
  padding-left: 28px;
}

/* ================================
   ENTRY ANIMATION
================================ */

@keyframes lovelessFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   MOBILE REFINEMENT
================================ */

@media(max-width:768px){

  .bitform input {
    padding: 18px 20px;
    font-size: 17px;
  }

  #address-suggestions div {
    padding: 20px;
  }

  .bitform button {
    padding: 20px;
  }
}