body {
    /*background: #f2f2f2;*/
    background: #bababa;
    font-family: sans-serif;
    font-size: 10px;
}

form {
    background: #fff;
    padding: 2em 2em 2em;
    max-width: 400px;
    margin: 10px auto 0;
    box-shadow: 0 0 1em #bababa;
    border-radius: 10px;
}
    form h2 {
        margin: 0 0 20px 0;
        padding: 10px;
        text-align: center;
        font-size: 28px;
        color: #666666;
        border-bottom: solid 1px #e5e5e5;
    }
form p {
  margin: 0 0 2em 0;
  position: relative;
}
form input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  margin: 0;
}
    form input[type="text"],
    form input[type="password"],
    form select {
        background: #fff;
        border: 1px solid #dbdbdb;
        font-size: 1.6em;
        padding: .5em .5em;
        border-radius: 2px;
    }
form input[type="text"]:focus,
form input[type="password"]:focus {
  background: #fff;
}
form span {
  display: block;
  background: #F9A5A5;
  padding: 2px 5px;
  color: #666;
}
    form input[type="button"] {
        background: #BE0D0D;
        box-shadow: 0 3px 0 0 #9b0d0d;
        border-radius: 2px;
        border: none;
        color: #fff;
        cursor: pointer;
        display: block;
        font-size: 2em;
        line-height: 1.6em;
        margin: 1em 0 0;
        outline: none;
        padding: 0.5em 0;
        text-shadow: 0 1px #68B25B;
    }
        form input[type="button"]:hover {
            background: #BE0D0D;
            text-shadow: 0 1px 3px rgba(70, 93, 41, 0.7);
        }
    form label {
        position: absolute;
        left: 8px;
        top: 12px;
        color: #999;
        font-size: 16px;
        display: inline-block;
        padding: 1px 10px;
        font-weight: 400;
        background-color: rgba(255, 255, 255, 0);
        -moz-transition: color 0.3s, top 0.3s, background-color 0.8s;
        -o-transition: color 0.3s, top 0.3s, background-color 0.8s;
        -webkit-transition: color 0.3s, top 0.3s, background-color 0.8s;
        transition: color 0.3s, top 0.3s, background-color 0.8s;
    }
form label.floatLabel {
  top: -11px;
  background-color: rgba(255, 255, 255, 1);
  font-size: 14px;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
form ul li {
    margin: 10px 20px;
}
#pswd_info {
    position: absolute;
    z-index:1000000;
    /*bottom: -75px;
    bottom: -115px\9;*/ /* IE Specific */
    /*right: 55px;*/
    width: 250px;
    padding: 15px;
    background: #fefefe;
    font-size: .875em;
    border-radius: 5px;
    box-shadow: 0 1px 3px #ccc;
    border: 1px solid #ddd;
}
    /*form ul li:last-child {
        text-align: center;
        margin: 20px 0 25px 0;
    }*/
    #pswd_info h4 {
        margin: 0 0 10px 0;
        padding: 0;
        font-weight: normal;
    }
    #pswd_info::before {
        content: "\25B2";
        position: absolute;
        top: -12px;
        left: 45%;
        font-size: 14px;
        line-height: 14px;
        color: #ddd;
        text-shadow: none;
        display: block;
    }
.invalid {
    background: url(cross.png) no-repeat 0 50%;
    padding-left: 22px;
    line-height: 24px;
    color: #ec3f41;
}

.valid {
    background: url(tick.png) no-repeat 0 50%;
    padding-left: 22px;
    line-height: 24px;
    color: #3a7d34;
}
#pswd_info {
    display: none;
}