body {
  font-family: 'lato',sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  background: #eee;
}

main{
  width: 80vw;
  background: #fff;
  padding : 2% 0 2% 0;
  margin: 3% auto 3% auto;
}

.form-container {
  padding: 2% 0 2% 0;
  width: 90%;
  margin: auto;
  border: 3px solid #f7f7f7;
  text-align: center;
}

#form_project{
  margin-top: 5%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#left_form, #right_form{
  width: 45vw;
}

label {
  display: block;
  margin-top: 2%;
  font-size: 1rem;
  margin-bottom: 0.5%;
}

input {
  border-radius: 1vw;
  width: 18vw;
  padding: 1.2vw;
  border: 0.1vw solid #ccc;
}

input.import {
  margin-bottom: 1%;
  width: 60%;
}

textarea {
  border-radius: 1vw;
  min-width: 80%;
  max-width: 80%;
  padding: 2%;
  font-size: 1rem;
  border: 1px solid #ccc;
}

button {
  width: 10vw;
  height: 50px;
  border-radius: 1vw;
  color: #fff;
  background: #a94c39dd;
  line-height: 1rem;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  margin-top: 25px;
  transition: color .4s ease-out, background .4s ease-out;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 2%;
}

.errors {
  display: block;
  color: red;
  margin-top: 5px;
}

.error {
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  box-shadow: 0 0 15px 0 rgba(255,36,0,1);
}

@media screen and (max-width: 426px) {
  h1 {
    font-size: 3vw;
  }

  label {
    font-size: 2vw;
  }

  input {
    font-size: 2vw;
  }

  button {
    font-size: 2vw;
    width: 20vw;
    height: 6vw;
    border-radius: 2vw;
  }

  textarea {
    font-size: 2vw;
  }
}