/* Fonts Imported from Google */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,400);
/*   Core: General style
----------------------------*/
html{
    height:100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    background:url('../../images/login-bg.png')no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height:100%;
    padding-top:15px;

}
.box{
    width:400px;
    height:100%;
    margin:auto;
    border-radius: 3px;
    background-color: #fff;
    padding:5px 20px 15px 20px;
}
.box input[type='submit']{
    margin:40px 0 20px 0;
}
@media screen and (max-width: 400px) {
    .mar-left5{
        margin-left: 18px !important;
        margin-top: -10px;
    }
}
@media screen and (max-width: 400px) {
    .mar-top4{
        margin-top: -10px;
    }

}
@media screen and (max-width: 400px) {
    .mar-left{
        margin-left: -5px !important;
    }
}

/* animation */

.text-primary,.btn-primary{
}

/* Chrome, Safari, Opera */
@-webkit-keyframes CAnimation {
    from {
        -webkit-filter: hue-rotate(0deg);
    }

    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}

/* Standard syntax */
@keyframes CAnimation {
    from {
        -webkit-filter: hue-rotate(0deg);
    }

    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}
.animated {
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.checkbox label{
    padding-left:0;
}

.login_logo{
    width: 100%;
    margin-bottom: 20px;
}