
/*================================================================== */
/*[ Restyle Checkbox ]*/

.input-checkbox100 {
    display: none;
}

.label-checkbox100 {
    font-family: Raleway-Regular;
    font-size: 12px;
    /*font-size: 16px;*/
    color: #999999;
    line-height: 1.2;

    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;

    /* ME */
    text-align: left;
    /*border:solid 1px red;left: 0;*/


}

.label-checkbox100::before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 13px;
    color: transparent;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #fff;
    border: 2px solid #d33f8d;
    left: 0;
    top: 48%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

}

.input-checkbox100:checked + .label-checkbox100::before {
    color: #d33f8d;
}


/*================================================================== */
/*================================================================== */
/*================================================================== */

body{
    background: #eee url(http://subtlepatterns.com/patterns/sativa.png);
}
html,body{
    position: relative;
    height: 100%;
}

div.login-container{
    position: relative;
    width: 300px;
    /*margin: 80px auto;*/
    margin: 15px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    
    /*border:solid 1px red;*/
}

#output{
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}

#output.alert-success{
    background: rgb(25, 204, 25);
}

#output.alert-danger{
    background: rgb(228, 105, 105);
}


div.login-container::before, div.login-container::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 3.5px;
    left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;

}

div.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
    -moz-transform: rotateZ(-2deg);
    -ms-transform: rotateZ(-2deg);

}

div.avatar{
    width: 100px;
    height: 100px;
    margin: 10px auto 15px auto;
    /*margin: 10px auto 30px;*/
    border-radius: 100%;
    /*border: 2px solid #aaa;*/
    background-size: cover;

    /*border: solid 1px red;*/
}

div.form-box input{
    width: 100%;
    padding: 10px;
    height:40px;
    border: 1px solid #ccc;
    ;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

div.form-box input:focus{
    outline: 0;
    background: #eee;
}

div.form-box input[type="text"]{
    border-radius: 5px 5px 0 0;
    /*text-transform: lowercase;*/
}

div.form-box input[type="password"]{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

div.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


div.password{
    position: relative;
}

div.password input[type="password"]{
    padding-right: 30px;
}

div.password .glyphicon,#password2 .glyphicon {
    /*display:none;*/
    right: 15px;
    position: absolute;
    top: 12px;
    cursor:pointer;
}