* {
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    box-sizing: inherit;
    background: #f5f5f5;
    color: #777;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
  }
  
  .hero--wrapper { 
    margin: 0 auto;
    width: 800px;
  }
  
  h1 {
    font-weight: 100;
    font-size: 48px;
    text-align: center;
    margin: 25px 0 0 0;
  }
  
  p {
    text-align: center;
  }
  
  #hero--buttons {
    margin: 0px auto; 
    text-align: center;
  }
  #inputfield {
    margin-bottom: 30px;
    border: 2px solid #D8BC5A !important;
    height: 40px;
    padding: 10px 30px;
  }
  #showPass, 
  #clear {
    width: 250px;
    height: 50px;
    background: #333;
    border: 0;
    display: inline-block;
    margin-right: 10px;
    color: #fff;
  
  }
  #showPass:hover, 
  #clear:hover {
    background-color: #D8BC5A;
  }
  
  #hidePass {
    width: 250px;
    height: 50px;
    background: #d8bc5a;
    border: 0;
    display: inline-block;
    color: #fff;
  }

  #hidePass:hover {
    background-color: #333;
  }
  