﻿@charset "utf-8";

/*------------------------------------------------------------------
[Login Stylesheet]

Project: CGC Apps
Version: 1.0
Update: 15/01/20
------------------------------------------------------------------*/


/*--------------------------------
[Vendors]
---------------------------------*/

@import '../../components/loading.css?_v=V2020111201';
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
@import '../../../vendors/bootstrap/css/bootstrap.min.css';
@import '../../font/cgc-app/cgc-app.css';
@import '../../font/line-awesome/css/line-awesome.min.css';

/*--------------------------------
[Base]
---------------------------------*/

* {
    font-family: 'Montserrat', sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    *::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    *::-webkit-scrollbar-thumb {
        background: #CE0202;
    }

    *::-webkit-scrollbar-track {
        background: #F8F9FA;
        border-radius: 4px;
    }

    *::-webkit-scrollbar-thumb:active {
        background-color: #6F7387;
    }

    *::-webkit-scrollbar-thumb:hover {
        background: #CE0202;
        box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
    }

html,
body {
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: 14px;
    overflow-y: scroll;
    -ms-overflow-style: scrollbar;
}

body {
    color: #656667;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: #ffffff;
    background-image: url("../../../img/background/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

a,
a:visited {
    font-size: 0.92rem;
    color: #656667;
    text-decoration: none !important;
    border: 1px solid transparent;
}

    a:hover,
    a:active,
    a.active {
        color: #A50707 !important;
    }

    a:focus {
        color: #A50707 !important;
        outline: none;
    }

p {
    font-size: 0.92rem;
}

label {
    display: block;
    font-size: 0.92rem;
    font-weight: bold;
}


/*--------------------------------
[Layout]
---------------------------------*/

.login-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.login-box__container {
    width: 500px;
    border: 1px solid #f1f2f6;
    background: #ffffff;
}

.login-box.flex-center {
    align-items: center;
    min-height: 100vh;
}

    .login-box.flex-center .login-box__container {
        border-radius: 1rem;
        box-shadow: 2px 4px 20px 0 rgba(0, 0, 0, .13);
        height: 100%;
        margin: 2% 1rem 1rem 1rem;
    }

.login-box .login-box__header {
    text-align: center;
}

.login-box .login-box__body {
    padding: 15px 10%;
}

.login-box.flex-center .login-box__body {
    padding-bottom: 30px;
}


/*--------------------------------
[Components]
---------------------------------*/

.login-box .login-box__header .login-box__logo {
    width: 60px;
    padding-top: 30px;
}

.login-box .login-box__header .login-box__title {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    color: #666666;
    letter-spacing: 0.1pt;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 10px;
}

.login-box .login-box__body .login-box__button {
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 35px;
    text-align: center;
}

.login-box .login-box__body .login-box__a {
    width: 100%;
    display: block;
    font-size: 12px;
    text-align: end;
    color: #DB6B16;
}

.login-box.flex-center .login-box__body .login-box__a {
    font-weight: 600;
    font-size: 13px;
}

.login-box i {
    padding-right: 12px;
    font-size: 2em;
    color: #A50707;
    vertical-align: middle;
    display: inline;
}

.login-box svg {
    padding-right: 12px;
    fill: #A50707;
    vertical-align: middle;
    display: inline;
}

.input-group-border {
    border: 1px solid #ced4da !important;
    border-radius: .5rem !important;
    background-color: #fff !important;
}

.input-group-border input,
.input-group-border .input-group-text {
    border: none;
    border-radius: .5rem;
    background-color: #ffffff;
}

.w-275 {
    width: 2.75rem;
}

.h-275 {
    height: 2.75rem;
}

.w-300 {
    width: 3rem;
}

.h-300 {
    height: 3rem;
}

.login-box .login-box__body .login-box__icon {
    display: inline-flex;
    width: 100%;
}

.login-box i.padding-left {
    padding: 0 0 0 12px;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #656667;
    background-color: rgba(241, 242, 246, 0.46);
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    box-shadow: 0 0 0.2rem rgba(24, 90, 140, .25) !important;
}


/*------------------------------
[Button]
------------------------------*/

.btn-primary,
.btn-primary:hover {
    border: none;
    outline: 0px;
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    color: #ffffff;
    background-color: #ffffff;
    border: 1px solid transparent;
}

    .btn-primary.btn-login {
        color: #ffffff;
        background: #CE0202;
        font-size: 14px;
        font-weight: 500;
        width: 150px;
        height: 40px;
        margin: 6px;
        border-radius: .5rem;
    }

.flex-center .btn-primary {
    font-size: 13px !important;
    font-weight: 600 !important;
}

.login-btn-big {
    padding: 15px 0;
    font-size: 12px;
    text-align: center;
    display: block;
}

.login-btn-big.white {
    background: #f1f2f6;
}

    .login-btn-big.blue {
        margin-top: 15px;
        padding: 10px 0;
        background: #CE0202;
        font-size: 12px;
        color: #fff;
    }

        .login-btn-big.blue:hover {
            background: #A50707;
            color: #ffffff;
        }

.login-btn-big.blue i {
    color: #ffffff;
}

.login-btn-big.blue a {
    color: #ffffff;
}

a:not([href]):not([tabindex]) {
    text-decoration: none;
    height: 20px !important;
    padding: 0.375rem 0rem !important;
}

.view:hover {
    color: #CE0202 !important;
}

@media all and (max-width: 600px) {
    .login-box {
        border: none;
    }
}

#center-box-big {
    width: 900px;
    border: 1px solid #f1f2f6;
    background: #fff;
}

#center-box-big .login-box__body {
    padding: 20px 5%;
}

.h2-title {
    font-size: 16px;
    font-weight: 500 !important;
}

.h3-title {
    color: #656667;
    font-size: 14px;
}

.bottom-padding {
    margin-bottom: 30px;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.h4-title {
    color: #8fbf00;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.form-control {
    height: 40px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #CE0202;
    border-color: none;
}

.btn-primary.btn-accept {
    color: #ffffff;
    background: #CE0202;
    font-size: 14px;
    font-weight: 500;
    border: none;
    width: 11rem;
    height: 40px;
    margin: 6px;
    border-radius: .5rem;
}

    .btn-primary.btn-accept:hover {
        background: #A50707;
        color: #fff;
    }

.btn-primary.btn-accept i,
.btn-primary.count-section i {
    color: #ffffff !important;
}

.btn-primary.btn-cancel {
    color: #ffffff;
    background: #6F7387;
    font-size: 14px;
    font-weight: 500;
    border: none;
    width: 11rem;
    height: 40px;
    margin: 6px;
    border-radius: .5rem;
}

    .btn-primary.btn-cancel:hover {
        background: #A50707;
        color: #fff;
    }

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #A50707;
    border-color: none;
}

.font-inherit {
    font-size: inherit !important;
}

.w-150 {
    width: 1.5rem;
}

.h-150 {
    height: 1.5rem;
}

.svg-gray {
    fill: #656667 !important;
    opacity: 0.5;
}

.cursor-pointer {
    cursor: pointer;
}

.border-radius-1 {
    border-radius: 1rem !important;
}

/* Evita ojo extra de los navegadores. */
input[type="password"]::-ms-reveal, input[type="password"]::-ms-clear {
    display: none !important;
}

.h5 {
    font-size: 1.05rem;
}