*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  background: #ddd url(/images/xorro_server.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: #5c5c5c;
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
}

header {
  padding: .4em .4em .8em .4em;
  margin-bottom: 1.4em;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.75); /* IE9 */
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.75) 0%, rgba(244, 244, 244, 0.75) 100%); /* IE10+ */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.75) 0%, rgba(244, 244, 244, 0.75) 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.75) 0%, rgba(244, 244, 244, 0.75) 100%); /* FF3.6+ */
  background: linear-gradient(top, rgba(255, 255, 255, 0.75) 0%, rgba(244, 244, 244, 0.75) 100%); /* W3C */
}

.outer-container {
  max-width: 50em;
  margin: .5em auto;
}
.inner-container {
  border: 1px #d1d1d1 solid;
  box-shadow: .2em .2em .1em rgba(0, 0, 0, .2);
  background-color: rgba(255, 255, 255, .85);
  border-radius: .4em;
  overflow: hidden;
  margin: 1.4em 10% 1em 10%;
  padding: .8em;
}

.box {
  background-color: rgba(255, 255, 255, .8);
  border-radius: .4em;
  padding: .6em;
}

.box.error {
  font-size: 120%;
  color: #fff;
  font-weight: 600;
  background: #e00000; /* IE9 */
  background: -ms-linear-gradient(top, #e00000 0%, #c00000 100%); /* IE10+ */
  background: -webkit-linear-gradient(top, #e00000 0%, #c00000 100%); /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #e00000 0%, #c00000 100%); /* FF3.6+ */
  background: linear-gradient(top, #e00000 0%, #c00000 100%); /* W3C */
  border: 2px solid #c00;
}
p {
  
  font-size: 110%;
  margin-top: .5em;
  margin-bottom: .5em;
}

