html, body {
    height:100%
}

body {
    background: #44516e; /* Old browsers */
    background: -moz-linear-gradient(top,  #44516e 0%, #6a738a 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#44516e), color-stop(100%,#6a738a)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #44516e 0%,#6a738a 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #44516e 0%,#6a738a 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #44516e 0%,#6a738a 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #44516e 0%,#6a738a 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#44516e', endColorstr='#6a738a',GradientType=0 ); /* IE6-9 */
}

.form-signin {
    background-color:#ffffff;
    max-width:350px;
    margin:4em auto;
    padding:50px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    color: rgba(0,0,0, .8);
    line-height: 1.5;
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
    margin-bottom: 10px;
}

.form-signin input[type="text"],
.form-signin input[type="password"] {
    font-size: 16px;
    height: auto;
    padding: 7px 9px;
    width:85%
}

.form-signin .add-on {
    font-size: 16px;
    height: auto;
    padding: 7px 9px;
}

.form-signin:before, .form-signin:after {
    z-index: -1;
    position: absolute;
    content: "";
    top: 15px;
    left: 10px;
    width: 50%;
    bottom: 80%;
    max-width:300px;
    background: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 -15px 15px rgba(0,0,0, 0.5);
    -moz-box-shadow: 0 -15px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 -15px 15px rgba(0, 0, 0, 0.5);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
}

.form-signin:after {
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
    right: 10px;
    left: auto;
}

.form-signin .small.note {
    margin-top: 20px;
    margin-bottom: 0;
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.3);
    border: 1px solid #DDDDDD;
    background: #EEEEEE;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 8px;
    font-size:13px;
    color:#666
}