*,
*::before,
*::after {
  box-sizing:border-box;
}

html,
body {
  width:100%;
  max-width:100%;
  margin:0;
  overflow-x:hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background:white;
  padding:0;
  font-family:"futura-pt-condensed", sans-serif;
}
/* HEADER */

/* CONTACT PAGE */

.contact-page {
  width:1440px;
  min-height:900px;
  margin:0 auto;
  padding:180px 80px 100px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:140px;
}

.contact-intro {
  font-size:42px;
  font-style:italic;
}

.contact-intro p {
  margin:0 0 25px;
}

.contact-intro a {
  color:black;
  text-decoration:none;
}

.contact-form {
  display:flex;
  flex-direction:column;
  gap:35px;
}

.form-field {
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label {
  font-size:22px;
}

.form-field input,
.form-field textarea {
  width:100%;
  padding:10px 0;
  border:0;
  border-bottom:1px solid black;
  border-radius:0;
  background:transparent;
  color:black;
  font-family:"futura-pt-condensed", sans-serif;
  font-size:28px;
}

.form-field textarea {
  resize:vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline:none;
  border-bottom-width:2px;
}
