body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(images/grad_bg%20copy.jpg);
    background-repeat: repeat-x;
    background-color: #000000;
    color: #666;
}

/* Flex container on body to center .container horizontally */
body {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: flex-start; /* align container near top */
    min-height: 100vh;
    text-align: center; /* center inline content by default */
}

/* Main container box */
.container {
    width: 1000px;
    max-width: 90vw; /* responsive max width */
    background-color: #fff;
    padding: 0;
    box-sizing: border-box;
    text-align: left; /* reset inside content to left align */
}

/* Header styles */
.header {
    background-color: #C4122f;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Content styles */
.content {
    padding: 30px 20px;
    text-align: center; /* center form content */
}

/* Form styles */
.content form {
    display: inline-block; /* shrink-wrap */
    text-align: left; /* form labels left align */
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.content form p {
    margin: 15px 0;
    color: #C4122E;
}

.content form input[type="text"],
.content form input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 8px;
}

/* Footer styles */
.footer {
    padding: 10px 20px;
    background-color: #CCCCCC;
    line-height: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.footer a {
    color: #336699;
    text-decoration: none;
}

.footer a:hover {
    color: #C4122E;
    text-decoration: underline;
}
