body {
    background: url(../images/bg_pattern.jpg) repeat-x;
    /*background-size: cover;*/
    font-family: 'Roboto Condensed', sans-serif;
}

div.overlay {
    width: 100%;
    height: inherit;
    /*background: url(/images/pattern.png) repeat;*/
}

.container-logo {
    text-align: center;
    margin: 50px 0 54px 0;
}

form {
    margin: 0 auto;
    padding: 30px 35px 30px 35px;
    width: 350px;
    height: 280px;
    background: #e3e3e3;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

p.label-form {
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: bold;
    color: #e3e3e3;
}

div.input-group {
    margin-bottom: 20px;
    border: 1px solid #e3e3e3 !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

input.form-control {
    border: none;
}

span.input-group-addon {
    background: #fff;
    border: none;
    color: #ed1b23;
    font-size: 20px;
}

form button {
    width: 280px;
    height: 46px;
    margin-left: 13px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: #ed1b23;
    border: none;
    border-bottom: 3px solid #b8151b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

@media screen and (max-width: 450px) {
    form button {
        margin-left: 0;
    }
}

form button:hover {
    background: #b8151b;
    border-color: #b8151b;
}

@media screen and (max-width: 450px) {
    form {
        padding: 30px;
        width: 100%;
    }

    input.form-control {
        width: 100%;
        height: 40px;
    }

    form button {
        width: 100%;
        height: 46px;
    }
}