body {
  margin: 0;
  background-color: #DEDED5;
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
}

#header {
  background: #111 url(carbon_fibre_lighter.png);
  height: 240px;
  border-bottom: 12px solid #B4B494;

  box-shadow:         inset 0 -10px 150px -10px #000;
  -moz-box-shadow:    inset 0 -10px 150px -10px #000;
  -webkit-box-shadow: inset 0 -10px 150px -10px #000;
}

#logo {
  margin: 60px auto 40px auto;
  max-width: 90%;
}

#content {
  padding: 60px;
  border-top: 1px solid #333;
}

form {
  margin: 25px 0 0 0;
}

.small {
  margin-top: 25px;
  font-size: 12px;
}

.signup {
  width: 540px;
  height: 48px;
  max-width: 100%;
  padding: 20px;
  margin-top: 20px;
  font-size: 40px;
  border: 2px solid #999;
  border-right: 0;
  color: #777;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;

  background-color: #FFF;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDD), to(#FFF));
  background: -webkit-linear-gradient(top, #FFF, #DDD);
  background: -moz-linear-gradient(top, #FFF, #DDD);
  background: -ms-linear-gradient(top, #FFF, #DDD);
  background: -o-linear-gradient(top, #FFF, #DDD);

  -webkit-transition: all 0.6s linear;
     -moz-transition: all 0.6s linear;
      -ms-transition: all 0.6s linear;
       -o-transition: all 0.6s linear;
          transition: all 0.6s linear;
}

.signup:hover, .signup:focus {
  color: #9C9C72;
  background-color: #FFF;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#D3D3D3), to(#FFF));
  background: -webkit-linear-gradient(top, #FFF, #D3D3D3);
  background: -moz-linear-gradient(top, #FFF, #D3D3D3);
  background: -ms-linear-gradient(top, #FFF, #D3D3D3);
  background: -o-linear-gradient(top, #FFF, #D3D3D3);
}

.submitform {
  cursor: pointer;
  height: 92px;
  max-width: 100%;
  margin: 0;
  padding: 20px;
  font-size: 40px;

  border: 2px solid #999;
  border-left: 0;

  font-family: 'Droid Sans';
  font-weight: bold;
  text-transform: uppercase;

  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25), 2px 2px 2px rgba(0, 0, 0, 0.25), 3px 3px 2px rgba(0, 0, 0, 0.25);

  color: #FFF;
  background-color: #007700;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#004A00), to(#007700));
  background: -webkit-linear-gradient(top, #007700, #004A00);
  background: -moz-linear-gradient(top, #007700, #004A00);
  background: -ms-linear-gradient(top, #007700, #004A00);
  background: -o-linear-gradient(top, #007700, #004A00);
}

.submitform:hover, .submitform:focus {
  background-color: #F09D10;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#C07B09), to(#F09D10));
  background: -webkit-linear-gradient(top, #F09D10, #C07B09);
  background: -moz-linear-gradient(top, #F09D10, #C07B09);
  background: -ms-linear-gradient(top, #F09D10, #C07B09);
  background: -o-linear-gradient(top, #F09D10, #C07B09);
}

:focus {
  outline-color: transparent;
  outline-style: none;
}

#twitter {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 10px;
  border-radius: 10px;
  /*border: 1px solid #666;*/
  /*background-color: rgba(255, 255, 255, 0.1);*/
}

#twitter a {
  font-size: 16px;
  color: #BCBC96;
  text-decoration: none;
}

#twitter a:hover {
  color: #FFF;
}