* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'MuseoSans', sans-serif !important;
}

p, a, label, h1, h2, h3, h4 {
    color: #40516f;
}

/* PRELOADER ------------------------------------------------------- */
.contenedorPreloader {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    z-index: 1001 !important;
}

.titleSOC {
    width: 800px;
    margin: auto;
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
    width: 100px;
    height: 100px;
}

    .load hr {
        border: 0;
        margin: 0;
        width: 40%;
        height: 40%;
        position: absolute;
        border-radius: 50%;
        animation: spin 2s ease infinite
    }

    .load :first-child {
        background: #00b637;
        animation-delay: -1.5s
    }

    .load :nth-child(2) {
        background: #00b637;
        animation-delay: -1s
    }

    .load :nth-child(3) {
        background: #00b637;
        animation-delay: -0.5s
    }

    .load :last-child {
        background: #00b637
    }

@keyframes spin {
    0%,100% {
        transform: translate(0)
    }

    25% {
        transform: translate(160%)
    }

    50% {
        transform: translate(160%, 160%)
    }

    75% {
        transform: translate(0, 160%)
    }
}
/* PRELOADER ------------------------------------------------------- */


/* LOGIN ------------------------------------------------------- */
.login {
    /*background-image: url('../img/fondo/back.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;*/
}

.login div form {
    width: 360px;
    height: fit-content;
    padding: 35px;
    background: #fff;
    position: fixed;
    top: 0px;
    bottom: 0;
    margin: auto;
    left: 100px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px #2a2a2a;
    opacity: 0;
    display: none;
}

        .login div form p {
            text-align: center;
            font-size: 20px;
            font-weight: 600;
        }

    .login div form label {
        color: rgba(64, 81, 111, 0.55);
    }

    .login div form .label {
        color: rgba(64, 81, 111, 0.55);
        font-size: 13px;
        font-family: MuseoSans;
    }

        .login div form input {
            background: rgba(65, 84, 110, 0.15);
            height: 50px;
            border: none;
        }

    .login div form .input {
        background: rgba(65, 84, 110, 0.15);
        height: 50px;
        border: none;
    }

        .login div form .logo {
            width: 180px;
            margin: 0 auto 30px;
            display: block;
        }

        .login div form .sisec {
            width: 130px;
            margin: 10px auto;
            display: block;
        }

        .login div form a {
            text-align: center;
            display: block;
            margin: 15px 0 30px;
        }

        .login div form .enviar {
            background: #F47C30;
            color: #fff;
            width: 100%;
            height: 50px;
        }
/* LOGIN ------------------------------------------------------- */

/* RESPONSIVE ------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .login div form {
        left: -60px;
        right: 0;
    }
}

@media screen and (max-width: 400px) {
    .login div form {
        width: 300px;
        left: -75px;
        padding: 22px;
    }
}
