:root {
  --color-primary-lightest: rgb(248, 244, 239);
  --color-primary-lighter: rgb(239, 236, 231);
  --color-primary-lighter-transparent: rgb(239, 236, 231, 0.2);
  --color-primary: rgb(174, 140, 105);
  --color-primary-dark: rgb(165, 132, 98);
  --color-primary-darkest: rgb(120, 92, 65);
  --color-primary-darkest-transparent: rgb(120, 92, 65, 0.2);
}

.websiteField {
  position: absolute;
  left: -9999px;
}

.formSuccessBox {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.formSuccessTick {
    font-size: 64px;
    line-height: 1;
    color: rgb(92, 122, 88);
    text-align: center;
    margin-bottom: 20px;
}

.formMessageSuccess {
    display: block;
    line-height: 1.5;
    color: rgb(92, 122, 88);
}

.formMessageSuccess {
  color: rgb(92, 122, 88);
}

.formMessageError {
  color: rgb(140, 82, 72);
}

a {
  color: var(--color-primary-darkest);
}

.contactContainer {
  left: 0px;
  top: 0px;
  width: 100%;
  min-height: 1070px;
  background: url('/ui/tile.png');
  background-repeat: repeat;
}

.contact {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 600px;
  transform: translate(-50%);
  background: rgba(255.0, 255.0, 255.0, 0.4);
  border-radius: 10px;
}

.message {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 600px;
  height: 160px;
  transform: translate(-50%);
  text-align: center;
}

.messageTitle {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 600px;
  height: 50px;
  /* <-- Font Family Change */
  font-family: 'Cormorant Garamond';
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary-darkest);
}

.messageDescription {
  position: absolute;
  left: 0px;
  top: 50px;
  width: 600px;
  height: 110px;
  /* <-- Font Family Change */
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 300;
  color: var(--color-primary-darkest);
}

.messageDescription a {
  text-decoration: none;
}

/* FORM */

label {
  color: var(--color-primary-darkest);
}

.contactForm {
  position: absolute;
  left: 50%;
  top: 174px;
  width: 600px;
  height: 670px;
  transform: translate(-50%);
  padding: 20px;
  /* <-- Font Family Change */
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 400;
}

input[type=text],
select,
textarea {
  width: 100%;
  left: 10px;
  padding: 12px;
  border: 2px solid rgba(111.0, 83.0, 74.0, 0.6);
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  /* <-- Font Family Change */
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 400;
}

input[type=submit] {
  background: var(--color-primary-darkest);
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background: var(--color-primary-darkest);
}

/* PHONE LAYOUT */

@media (max-width: 600px) {

  .contactContainer {
    left: 0px;
    top: 0px;
    width: 100%;
    min-height: 1070px;
    background: url('/ui/tile.png');
    background-repeat: repeat;
  }

  .contact {
    position: absolute;
    left: 50%;
    top: 120px;
    width: 320px;
    transform: translate(-50%);
    background: rgba(255.0, 255.0, 255.0, 0.4);
    border-radius: 10px;
  }

  .message {
    position: absolute;
    left: 50%;
    top: 14px;
    width: 320px;
    height: 160px;
    transform: translate(-50%);
    text-align: center;
  }

  .messageTitle {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 320px;
    height: 50px;
    /* <-- Font Family Change */
    font-family: 'Cormorant Garamond';
    font-size: 26px;
    font-weight: 300;
    color: var(--color-primary-darkest);
  }

  .messageDescription {
    position: absolute;
    left: 0px;
    top: 60px;
    width: 320px;
    height: 110px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: 300;
    color: var(--color-primary-darkest);
  }

  /* FORM */

  label {
    color: var(--color-primary-darkest);
  }

  .contactForm {
    position: absolute;
    left: 50%;
    top: 174px;
    width: 320px;
    height: 670px;
    transform: translate(-50%);
    padding: 20px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: 400;
  }
}