@import url(main.css);

.contact {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 2em;
}
.contact h2{
  flex-basis: 100%;
}
.contact div{
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-basis: 40%;
  & p{
    text-align: center;
    font-size: 1.4em;
  }
}
.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 54%;
  padding: 1em 2em;
  border: var(--border);
  border-radius: var(--border-radius);
  & h3{
    width: 100%;
    font-size: 2.5em;
    text-align: center;
    border-bottom: var(--border);
    margin-bottom: 0.6em;
  }
  & label{
    font-size: 1.2em;
    align-self: flex-start;
    margin-left: 1em;
    margin-bottom: 0.4em;
  }
  & input, textarea{
    font-size: 1.2em;
    font-family: "Poppins", sans-serif;
    padding: 0.7em 1.5em;
    margin-bottom: 1.3em;
    border: 2px solid var(--text);
    border-radius: var(--border-radius);
    width: 100%;
    height: 3em;
  }
  & textarea{
    width: 100%;
    height: 163px;
  }
  & button{
    width: 70%;
    text-transform: uppercase;
    font-weight: bold !important;
  }
}