* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  width: 60em;
  margin: 0 auto;
  font: 12px Arial, Tahoma, Helvetica, FreeSans, sans-serif;
  text-transform: inherit;
  color: #333;
  background: #e7edee;
  line-height: 18px;
}

.logo {
  padding-top: 10px;
}

a {
  text-decoration: none;
  color: #333
}

h1 {
  font-size: 1.9em;
  margin: 22px 0
}

p {
  margin: 8px 0
}

.footer {
  text-align: center;
  text-decoration-line: underline;
}


.wrap {
  text-align: center;
  margin: 15px auto;
  padding: 20px 25px;
  background: white;
  border: 2px solid #DBDBDB;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.status {
  /*display: none;*/
  padding: 8px 35px 8px 14px;
  margin: 20px 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

input[type="submit"] {
  cursor: pointer;
  width: 80%;
  border: none;
  background: #FF0000;
  background-image: linear-gradient(bottom, #A60000 0%, #FF0000 52%);
  background-image: -moz-linear-gradient(bottom, #A60000 0%, #FF0000 52%);
  background-image: -webkit-linear-gradient(bottom, #A60000 0%, #FF0000 52%);
  color: #FFF;
  font-weight: bold;
  margin: 20px 0;
  padding: 10px;
  border-radius: 5px;
}

input[type="submit"]:hover {
  background-image: linear-gradient(bottom, #FF0000 0%, #CC0A0A 52%);
  background-image: -moz-linear-gradient(bottom, #FF0000 0%, #CC0A0A 52%);
  background-image: -webkit-linear-gradient(bottom, #FF0000 0%, #CC0A0A 52%);
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}