* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ////////////////////////////////////////////////////////
  NAVIGATION SECTION 
  ////////////////////////////////////////////////////////// */
.header-2 {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9.6rem;
  padding: 2.2rem 4.8rem;
  position: relative;
  box-shadow: 0 1rem 3.2rem rgba(0, 0, 0, 0.09);
}

.icon-home {
  font-size: 3.6rem;
}
/* ////////////////////////////////////////////////////////
  FORM SECTION 
  ////////////////////////////////////////////////////////// */
.form-section {
  background-color: #ffe7ad;
  max-width: 120rem;
  height: 60rem;
  margin: 0 auto;
  margin-top: 10rem;
  border-radius: 2rem;
  /* box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075); */
}

.form-container {
  font-size: 2rem;
  gap: 0rem;

  grid-template-columns: 1.4fr 1fr;
}
.form-title {
  margin-bottom: 4rem;
}
.form-section-text {
  line-height: 2.4rem;
}
.form-content {
  /* justify-self: flex-end; */
  align-self: center;
  /* margin: 8rem; */
  width: 100%;
  padding: 0 2rem 0 6rem;
}
.form-img {
  width: 40rem;
  border-radius: 0 2rem 2rem 0;
}
.form {
  font-size: 1.6rem;
  margin-top: 4rem;
  row-gap: 2.4rem;
  column-gap: 3.2rem;
}
.form label {
  /* This creates a line break so that the labels go on top of the boxes */
  display: block;
  margin-bottom: 1.8rem;
}

.form input {
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  border-radius: 0.9rem;
  font-family: inherit;
  border: none;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.form button {
  border: none;
  height: 4.5rem;
  padding: 0;
  margin: 0;
  align-self: flex-end;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.form-img-box {
  justify-self: flex-end;
}
