html, body {
    height: 100%;
}
body {
    padding: 0;
    background: url(../images/wolf.png?crc=127042093) no-repeat 0 100%;
    background-size: 50%;
    font-family: interface, sans-serif
}
h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 1em;
    text-align: center;
}
table {
    margin: 0 auto;
}
th, td {
    padding: 8px 5px;
}
th {
    font-weight: bold;
    text-align: right;
}
input[type=text], input[type=email] {
    border: 2px solid #91cccb;
    border-radius: 4px;
    line-height: 1em;
    padding: 5px;
    width: 200px;
}
input[type=text]:focus, input[type=email]:focus {
    border: 2px solid #01908e;
}

input[type=submit] {
    background: #00908E;
    border-radius: 30px;
    color: white;
    font-size: 25px;
    padding: 10px 25px;
    cursor: pointer;
    margin-top: 0.5em;
    transition: all 0.5s;
}

input[type=submit]:hover {
    background: #4caf50;
}

.content {
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(206, 236, 239, 0.8);
}

.flash.success {
    text-align: center;
    margin-bottom: 1em;
    background: #08b108;
    color: white;
    font-weight: bold;
    padding: 20px;
    border-radius: 4px;
    font-size: 16px;
}
.flash.success.confirm {
    font-size: 20px;
    margin: 60px;
}