* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #5D6063;
  background-color: #EEEEEE;
  font-family: "Roboto", "Calibri", sans-serif;
  font-size: 16px;
  
}

.form {
  color: #484848;
  font-family: "Arial Black", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  width: 200px;
  align-items: center;
  border-radius: 8px;
}

.form input {
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-row textarea {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  border: 1px solid #D6D9DC;
  border-radius: 3px;
  min-height: 200px;
  margin-bottom: 10px;
  padding: 7px;
  resize: none;
  min-width: 300px;
}

.form-row .instructions {
  color: #999999;
  font-size: 14px;
  margin-bottom: 10px;
  min-width: 300px;
  display: center;
}

.form-row select {
  padding: 5px;
  font-size: 14px;            /* This won't work in Chrome or Safari */
  -webkit-appearance: none;   /* This will make it work */
}

.illustration img {
  width: 100%;
  display: block;
  justify-content: center;
  padding-bottom: 50px;
}

/*Mobile Styles*/
@media only screen and (max-width: 425px) {
  body {
    background-color: #EEEEEE;
  }

  .form-row label {
    width: 350px;
    text-align: center;
    justify-content: center;
  }

  .form {
    width: 95%;
  }
}

/*Tablet Styles*/
@media only screen and (min-width: 426px) and (max-width: 960px) {
  body {
    background-color: #EEEEEE;
  }
}

/*Desktop Styles*/
@media only screen and (min-width: 961px) {
  body {
    background-color: #EEEEEE;
  }
}
