html, body {
    background-color: #020918;
}

.container {
    width: 500px;
    margin: 100px auto 0px auto;
    background-color: white;
    border-radius: 10px;
    border: 2px solid white;
}

.container .header {
    background-image: url('../images/header.png');
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 217px;
    background-position: -60px 0px;
}

.container .footer {
    background-image: url('../images/footer.png');
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100px;
    background-position: -60px 0px;
}

.container .content {
    padding: 10px;
}

h1 {
    font-family: Helvetica;
    color: white;
    text-align: center;
    margin: 0px;
    padding: 10px;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    top: 120px;
}

h2 {
    font-family: Helvetica;
    text-align: center;
    font-size: 15px;
}

p, a, ul {
    font-family: Verdana;
    color: #020918;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    width: 100%;
    font-weight: bold;
    padding: 3px 0px;
}

.form-group input {
    display: block;
    border: 1px solid lightgray;
    padding: 6px;
    border-radius: 3px;
    width: 90%;
}

.form-group input[type=submit] {
    background-color: #6edb30;
    border: 1px solid #6edb30;
    color: white;
}

.form-group input[type=submit]:hover {
    background-color: #93db63;
}

.alert {
    display: block;
    border: 1px solid gray;
    text-align: center;
    color: white;
    border-radius: 3px;
    padding: 5px;
}
.alert.success{
    background-color: #6edb30;
}
.alert.error{
    background-color: #db3c3b;
}
