body {
    background: url("../images/login-bg.jpg") no-repeat;
    background-size: cover;
}

.login-logo {
    margin-top: 30px;
}

    .login-logo img {
        width: 300px;
        height: auto;
    }

.login form {
    background: rgba(255,255,255,.2);
    width: 300px;
    margin: 30px auto;
    border-radius: 0.4em;
    border: 1px solid #6a6a6a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
}

.login form:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 100px;
    left: 20%;
    background: linear-gradient(left, #111, #444, #b6b6b8, #444, #111);
    top: 0;
}

.login form:before {
    content: "";
    display: block;
    position: absolute;
    width: 8px;
    height: 5px;
    border-radius: 50%;
    left: 34%;
    top: -7px;
    box-shadow: 0 0 6px 4px #fff;
}

.inset {
    padding: 20px;
    border-top: 1px solid #19191a;
}

.login form h1 {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    text-align: center;
    padding: 15px 0;
    position: relative;
    margin: 0;
    background: #c92109;
}

.login form h1:after {
    content: "";
    display: block;
    width: 250px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 50px;
    pointer-events: none;
    transform: rotate(70deg);
    -webkit-transform: rotate(70deg);
    background: linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background-image: -webkit-linear-gradient(50deg, rgba(255,255,255,0.05), rgba(0,0,0,0)); /* For Safari */
}

.login label {
    color: #fff;
    display: block;
    padding-bottom: 9px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.login input[type=text],
.login input[type=password] {
    width: 100%;
    padding: 8px 5px;
    background: linear-gradient(#1f2124, #27292c);
    border: 1px solid #222;
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
    border-radius: 0.3em;
    margin-bottom: 20px;
    color: #777;
}

.login label[for=remember] {
    color: white;
    display: inline-block;
    padding-bottom: 0;
    padding-top: 5px;
}

.login input[type=checkbox] {
    display: inline-block;
    vertical-align: top;
}

.p-container {
    padding: 0 20px 20px 20px;
}

.p-container:after {
    clear: both;
    display: table;
    content: "";
}

.p-container span {
    display: block;
    float: left;
    color: #0d93ff;
    padding-top: 8px;
}

.login input[type=submit] {
    padding: 5px 20px;
    border: 1px solid rgba(0,0,0,0.4);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 0.3em;
    background: #c92109;
    color: white;
    float: right;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}

.login input[type=submit]:hover {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -10px 10px rgba(255,255,255,0.1);
}

.login input[type=text]:hover,
.login input[type=password]:hover,
.login label:hover ~ input[type=text],
.login label:hover ~ input[type=password] {
    background: #27292c;
}

.login-text {
    margin-top: 50px;
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
}

.login-text p {
    font-size: 20px;
}

div.footer {
    position: fixed;
    bottom: 0;
    top: auto;
    width: 100%;
    padding: 15px 0;
}

.footer-text {
    color: #fff;
    text-align: center;
}
