﻿.background-divisors {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: green;
    display: flex;
    flex-direction: column;
}

    .background-divisors div:nth-child(1) {
        flex: 1;
        background-color: #f0f2f5;
    }

    .background-divisors div:nth-child(2) {
        flex: 1;
        background-color: #dae3e8;
    }

.login-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    width: 400px;
    background: white;
    padding: 20px 60px;
    text-align: center;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 5px;
    position: relative;
    transform: scale(1);
    transition: transform 1s ease;
}

    .login-box.logueando {
        transform: scale(1.1);
    }

        .login-box.logueando::after {
            content: "";
            position: absolute;
            top: 120px;
            left: 0;
            width: 100%;
            height: calc(100% - 120px);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(2px);
            pointer-events: all;
        }

.btn-form-datos-personales {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

#divRequiereActualizarDatosPersonales > div > p {
    font-size: 16px;
    font-weight: 400;
    font-family: 'lato';
    padding-left: 40px;
    padding-right: 40px;
}

#btn_recordar_mas_tarde {
    background-color: transparent;
    border: none;
    color: #008cba;
}

    #btn_recordar_mas_tarde:hover {
        text-decoration: underline;
    }

.datos_personales_form_padding {
    padding-left: 60px;
    padding-right: 60px;
}

.div-header {
    padding: 10px;
    padding-bottom: 30px;
}

.div-texto-recuperacion-password {
    margin-bottom: 30px;
    font-family: 'Lato';
    font-weight: 400;
    font-size: 16px;
}

.form__group {
    position: relative;
    padding: 15px 0 0;
    width: 100%;
    margin: 20px 0;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.3rem;
    color: black;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

    .form__field::placeholder {
        color: transparent;
    }

    .form__field:placeholder-shown ~ .form__label {
        font-size: 1.3rem;
        cursor: text;
        top: 20px;
    }

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 14px;
    color: #9b9b9b;
}

.form__field:focus {
    padding-bottom: 6px;
    border-width: 3px;
    border-image: linear-gradient(to right, #001e42, #00aec7);
    border-image-slice: 1;
}

    .form__field:focus ~ .form__label {
        position: absolute;
        top: 0;
        display: block;
        transition: 0.2s;
        font-size: 14px;
        color: #00aec7;
    }

/* reset input */
.form__field:required, .form__field:invalid {
    box-shadow: none;
}

.login-button {
    background: #f0f2f5;
    border: 1px solid #0018711c;
    color: #7e94a2;
    padding: 8px 20px;
    border-radius: 3px;
    transition: .2s ease;
}

    .login-button:hover {
        background: #dbdde0;
    }

.separador-login {
    position: relative;
    height: 70px;
    width: 100%;
}

    .separador-login::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0;
        background: #b7b7b7;
    }

    .separador-login::after {
        content: "o";
        position: absolute;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        top: 50%;
        left: 50%;
        color: #b7b7b7;
        background: white;
        transform: translate(-50%, -50%);
    }

.btn-social {
    width: 100%;
    border-radius: 0;
    border: none;
    margin: 5px 0;
    padding: 0;
    color: white;
}

    .btn-social div {
        display: flex;
        align-items: center;
    }

    .btn-social div {
        background: #00000000;
        transition: .2s ease;
    }

        .btn-social div:hover {
            background: #00000033;
        }

    .btn-social i {
        height: 40px;
        line-height: 40px;
        width: 40px;
        background: #00000033;
    }

    .btn-social span {
        flex: 1;
        text-align: center;
    }

.btn-microsoft {
    background: #545454;
}

.btn-google {
    background: #de4a36;
}

body .vertical-centered-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    z-index: 2147483647;
}

#div-carga-nuevo {
    display: block;
}

body .vertical-centered-box::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

body .vertical-centered-box .content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: fadein 1s linear forwards;
    -moz-animation: fadein 1s linear forwards;
    -o-animation: fadein 1s linear forwards;
    animation: fadein 1s linear forwards;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
    opacity: 0;
}

body .vertical-centered-box {
    background: none;
}

body {
    background: #2D2D2C;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    overflow: hidden;
    -webkit-transform-origin: 50px 50px;
    -moz-transform-origin: 50px 50px;
    -ms-transform-origin: 50px 50px;
    -o-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mix-blend-mode: hard-light;
    opacity: 0.8;
}

    .loader-line-mask .loader-line {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .loader-line-mask.one {
        -webkit-animation: rotate 2s infinite linear;
        -moz-animation: rotate 2s infinite linear;
        -o-animation: rotate 2s infinite linear;
        animation: rotate 2s infinite linear;
    }

        .loader-line-mask.one .loader-line {
            box-shadow: inset 0 0 0 8px #00AEC7;
        }

    .loader-line-mask.two {
        -webkit-animation: rotate 2s -1s infinite linear;
        -moz-animation: rotate 2s -1s infinite linear;
        -o-animation: rotate 2s -1s infinite linear;
        animation: rotate 2s -1s infinite linear;
    }

        .loader-line-mask.two .loader-line {
            box-shadow: inset 0 0 0 8px #001871;
        }

lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

[not-existing] {
    zoom: 1;
}

lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

[not-existing] {
    zoom: 1;
}

.forgot-password-wrapper {
    text-align: right;
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: -15px;
}
