html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header h1 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Roboto', math /*sans-serif*/;
    text-align: center;
    color: #0099ff;
    text-transform: uppercase;
    /*text-shadow: 1px 1px 0px #3b79d7, 1px 2px 0px #3b79d7, 1px 3px 0px #3b79d7, 1px 4px 0px #3b79d7, 1px 5px 0px #3b79d7, 1px 6px 0px #3b79d7, 1px 10px 5px rgba(16, 16, 16, 0.5), 1px 15px 10px rgba(16, 16, 16, 0.4), 1px 20px 30px rgba(16, 16, 16, 0.3), 1px 25px 50px rgba(16, 16, 16, 0.2);
*/
}

@import url("//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css");

.login-block {
    background: #337ab7; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #eee9ff, #337ab7); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #eee9ff, #337ab7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    float: left;
    width: 100%;
    padding: 0px 0 0px 0;
}

.banner-sec {
    background: url(../img/logo.png) no-repeat left bottom;
    background-size: cover;
    min-height: 500px;
    border-radius: 0 10px 10px 0;
    padding: 0;
}

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 15px 20px 0px rgba(0,0,0,0.1);
}

.carousel-inner {
    border-radius: 10px 10px 10px 10px;
}

.carousel-caption {
    text-align: left;
    left: 5%;
}

.login-sec {
    padding: 50px 30px;
    position: relative;
}

    .login-sec .copy-text {
        position: absolute;
        width: 80%;
        bottom: 20px;
        font-size: 13px;
        text-align: center;
    }

        .login-sec .copy-text i {
            color: #eee9ff;
        }

        .login-sec .copy-text a {
            color: #337ab7;
        }

    .login-sec h2 {
        margin-bottom: 30px;
        font-weight: 800;
        font-size: 30px;
        color: #337ab7;
    }

        .login-sec h2:after {
            content: " ";
            width: 100px;
            height: 5px;
            background: #337ab7;
            display: block;
            margin-top: 20px;
            border-radius: 3px;
            margin-left: auto;
            margin-right: auto
        }

.btn-login {
    background: #337ab7;
    color: #fff;
    font-weight: 600;
}

.banner-logo-empresa {
    width: 50%;
    position: absolute;
    bottom: 565px;
    padding-left: 0px;
}

.banner-logo-cliente {
    width: 110%;
    position: absolute;
    bottom: 15px;
    padding-left: 325px;
}

.banner-text-title {
    width: 95%;
    position: absolute;
    bottom: 330px;
    padding-left: 130px;
}

    .banner-text-title h2 {
        color: #fff;
        font-weight: 600;
    }

        .banner-text-title h2:after {
            content: " ";
            width: 100px;
            height: 5px;
            background: #FFF;
            display: block;
            margin-top: 20px;
            border-radius: 3px;
            text-align: center;
        }

    .banner-text-title p {
        color: #fff;
    }

.banner-text {
    width: 110%;
    position: absolute;
    bottom: 285px;
    padding-left: 25px;
}

.btn-success {
    color: #fff !important;
    background-color: #c3c3c3 !important;
    border-color: #068be9 !important;
    box-shadow: none !important;
}

    .btn-success:hover {
        color: #fff !important;
        background-color: #259077 !important;
        border-color: #c3c3c3 !important;
    }

.btn-primary {
    color: #fff !important;
    background-color: #259077 !important;
    border-color: #259077 !important;
    box-shadow: none !important;
}

    .btn-primary:hover {
        color: #fff !important;
        background-color: #34AF7A !important;
        border-color: #304e6d !important;
    }

.btn-danger {
    color: #fff !important;
    background-color: #c3c3c3 !important;
    border-color: #068be9 !important;
    box-shadow: none !important;
}

    .btn-danger:hover {
        color: #fff !important;
        background-color: #259077 !important;
        border-color: #c3c3c3 !important;
    }


/*.loader {
    margin: auto;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    opacity: .8;
    z-index: 9999;
    animation: spinner 4s linear infinite;
    background-color: rgba(255,255,255,0.7);
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/
.loader {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    display: none;
}
	
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: #f3f3f3;
    border-top-color: #3498db;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

.imagen {
    width: 450px;
    height: 350px;
}

.headerimg {
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
}