/* CARD FOR CONTACT FORM */
.card-form{
    width: 384px;
    height: auto;
    background-color:#f0f0f0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.014);
    border-radius: 2px;
    display: block;
    padding: 37px 28px;
}

/* INPUT */
input {
  width: 100%;
  /*padding: 12px 20px;*/
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
  background-color:transparent;
  border-bottom: 3px solid #e9e9e9;
  outline: none;
  font-size: 14px;
}

/* LABEL */
label{
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  color: #0072A4;
}

/* PLACEHOLDER */
::placeholder{
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #898989;
}

/* FORM BUTTON */
  .button {
    background-color: #008E80;
    border: none;
    color: white;
    padding: 8px 55px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    width: auto;
    margin-top: 1vw;
    cursor: pointer;
    box-shadow: 0px 3px 6px #00000029;
  }

  .button:hover {
    background-color: #0072a4;
  }