﻿body {
    background-color: #f3f3f3;
    font-size: 13px;
    overflow-x: hidden;
    color: #353c4e;
    font-family: "Open Sans",sans-serif;
    background-attachment: fixed;
    padding: 0px !important;
}
.login .container-fluid {
    width: auto;
    margin-top: 80px;
}
.login-block {
    padding: 30px 0;
    margin: 0 auto;
    background: url(../images/auth/bg.jpg) no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.login-block .auth-box {
        margin: 20px auto 0 auto;
        max-width: 450px;
    }
.login-block .auth-box .confirm h3 {
            color: #01a9ac;
            font-size: 34px;
        }
.login-block .auth-box i.icofont-check-circled {
            font-size: 42px;
        }
.login-block.offline-404 .auth-box {
        max-width: 650px;
    }
.login-block.offline-404 .auth-box h1 {
            color: #2c3e50;
            font-size: 160px;
            font-weight: 600;
            letter-spacing: 5px;
            text-shadow: 3px -2px 4px rgba(128,128,128,0.57);
        }
.login-block.with-header {
        min-height: calc(100vh - 56px);
    }
.fake-input {
    position: relative;
}
.fake-input input {
        border: none: background:#fff;
        display: block;
        width: 100%;
        box-sizing: border-box
    }
.fake-input img {
        position: absolute;
        top: 2px;
        right: 5px
    }

.card-block {
    padding: 0.75rem;
}

.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 20px 0 rgba(69,90,100,0.08);
    box-shadow: 0 1px 20px 0 rgba(69,90,100,0.08);
    border: none;
    margin-bottom: 30px;
}
.m-t-20 {
    margin-top: 20px;
}
.m-b-20 {
    margin-bottom: 20px;
}
.form-control {
    font-size: 12px;
    border-radius: 2px;
    border: 1px solid #919aa373;
}

 @media only screen and (max-width: 767px) {
    .signup-card {
        position: inherit;
    }

    .auth-box {
        margin: 0;
    }

    .login h3 {
        margin-top: 0;
        margin-bottom: 0;
    }

    .login .m-b-20 {
        margin-bottom: 10px;
    }

    .login .m-t-30 {
        margin-top: 10px;
    }



    .login-card.auth-body, .signin-card.auth-body, .signup-card.auth-body {
        width: 100%;
    }


    .wizard.vertical > .content, .wizard.vertical > .steps {
        width: 100%;
    }

    .wizard {
        overflow: visible;
    }
}
@media only screen and (max-width: 993px) {
    .navbar, .navbar .navbar-logo {
        width: 100% !important;
    }

    .error-500, .error-503, .error-404, .error-400, .error-403, .login {
        display: block !important;
        position: relative !important;
    }

    .header .login-card {
        margin-top: 80px;
        margin-bottom: 60px;
    }
}
.theme-loader {
    height: 100%;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 999999;
    top: 0;
}

    .theme-loader .ball-scale {
        left: 50%;
        top: 50%;
        position: absolute;
        height: 50px;
        width: 50px;
        margin: -25px 0 0 -25px;
    }

        .theme-loader .ball-scale .contain {
            height: 100%;
            width: 100%;
        }

            .theme-loader .ball-scale .contain .ring {
                display: none;
            }

                .theme-loader .ball-scale .contain .ring:first-child {
                    display: block;
                    height: 100%;
                    width: 100%;
                    border-radius: 50%;
                    padding: 10px;
                    border: 3px solid transparent;
                    border-left-color: #01a9ac;
                    border-right-color: #01a9ac;
                    -webkit-animation: round-rotate 1.5s ease-in-out infinite;
                    animation: round-rotate 1.5s ease-in-out infinite;
                }

                    .theme-loader .ball-scale .contain .ring:first-child .frame {
                        height: 100%;
                        width: 100%;
                        border-radius: 50%;
                        border: 3px solid transparent;
                        border-left-color: #0ac282;
                        border-right-color: #0ac282;
                        -webkit-animation: round-rotate 1.5s ease-in-out infinite;
                        animation: round-rotate 1.5s ease-in-out infinite;
                    }

@-webkit-keyframes round-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}