@font-face {
    font-family: "Ubuntu";
    src: url(/ubuntu.woff2) format('woff2');
}

body {
    background-color: #fdfdfd;
    font-family: "Ubuntu script=latin rev=2";
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    background-image: url('/city.svg');
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center center;
    caret-color: transparent;
}

@media only screen and (max-width: 600px) {
    body {
        background-size: 240%;
    }
}

@media only screen and (min-width: 600px) and (max-width: 900px) {
    body {
        background-size: 160%;
    }
}

/** footer styler **/

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 5;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

/*Main layout : login form*/

#home_login {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-position: center center;
    width: 80%;
}

#login_form {
    width: 60%;
    height: 250px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#login_form p {
    color: #FFF;
    text-align: center;
}

#login_form a {
    color: rgb(177, 214, 59);
}

form input.form-control {
    font-size: 21px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fdfdfd;
    width: 70%;
    margin-left: 15%;
    background: none;
    line-height: 2em;
    display: block;
    color: rgb(177, 214, 59);
    caret-shape: none;
    caret-color: transparent;
}

input.form-control:focus {
    outline: none;
    caret-shape: underscore;
    caret-color: rgb(177, 214, 59);
}

input.form-control:-webkit-autofill, input.form-control:-webkit-autofill:focus, input.form-control:-internal-autofill-selected, input.form-control:-internal-autofill-selected:focus {
    color: rgb(57, 73, 156);
    background: none !important;
}

.btn {
    background: rgb(177, 214, 59);
    color: rgb(57, 73, 156);
    font-family: "Ubuntu script=latin rev=2";
    font-weight: 400;
    font-size: 20px;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.btn:hover {
    color: rgb(57, 73, 156);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}