html,body {
    padding:0;
    margin:0;
    background: #111826;
    font-family: helvetica,arial;
    text-transform: uppercase;
}

.container {
    background: #122239;
    box-sizing: border-box;
    width: 600px;
    /*max-height: 500px;*/
    margin: 50px auto 0;
    border-radius: 0 0 10px 10px;
}

.header {
    box-sizing: border-box;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    background: #41608f;
    color: #fff;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

form {
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    color: #fff;
    text-align: center;
}

form>small {
    font-size: .7em;
}

form>small a{
    color: #fff;
}

.error {
    color: #da9191;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
}

.content {
    background: white;
}

a.button {
    display: block;
    width: 100%;
    text-decoration: none;
}

input, button, a.button, .content {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}

input {
    border: 1px solid #555;
}

button,a.button {
    text-transform: uppercase;
    background: #26B16D;
    border: 0;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 700px) {
    .container {
        background: none;
        width: 100%;
        margin: 0;
        top:0;
        left: 0;
        border-radius: 0;
    }
    .header {
        border-radius: 0;
    }
}
