*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
body{
    /* display: flex; */
    height: 100vh;
    min-height: 500px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .title{
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  .email-form{
    padding: 10px 20px;
    border: 1px solid;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .email-form > *{
    display: block;
    margin: 10px 0;
  }
  .email-form_text{
    width: 100%;
    padding: 10px;
  }
  .email-form_textarea{
    width: 100%;
    padding: 10px;
    height: 120px;
    resize: none;
  }
  .email-form_top-msg{
    text-align: center;
  }
  .email-form_top-msg--err{
    color: red;
  }
  .email-form_top-msg--success{
    color: green;
  }
  .email-form_err-msg{
    color: red;
  }
  .email-form_submit{
    margin: 0 auto;
    color: #fff;
    background-color: #337ab7;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
  }
  /* Set Consistent styling across browsers */
  button, input, select, textarea{
    font-family: inherit;
    font-size: 100%;
  }