:root {
    /* CSS HEX */
    --steel-blue: #0080D0ff;
    --cobalt-blue: #0644ADff;
    --vivid-sky-blue: #00DDFAff;
    --celestial-blue: #0094E5ff;
    --celtic-blue: #0067DBff;

    --color-primario-fondo: #3f51b5;
    --color-primario-texto: #ffffff;
    --color-primario-header-page: #000000;
    --color-fondo-body: white;
    --color-button-fondo-hover: #3f51b5;
    --color-button-texto-hover: #D1CECE;
    --color-modal-header-fondo: linear-gradient(#282d95 0%, #0095e1 100%) no-repeat;
    --color-modal-header-fondo-info: linear-gradient(#17a2b8 0%, #0095e1 100%) no-repeat;
    --color-modal-header-texto: white;
    --color-fondo: linear-gradient(#0095e1 0%, #0095e1 100%) no-repeat;
    --color-fondo-menu: white;
}

.modalespera {
    display: none;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .8) url('dist/img/avatar.png') 50% 50% no-repeat;
}

body {
    
    margin: 0;
}

.footer-empresa{
    color: var(--vivid-sky-blue) !important;
    font-size:30px;
    animation: teclear 3s steps(16), efecto .5s step-end infinite alternate;
}

.caja {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 600px){
    .ocultar-div{
        display:none;
    }
}

@media screen and (min-width: 600px){
    .size-div{
        width: 70%;
    }
}

@keyframes teclear{
    from{
        clip-path: polygon(0 0,0 0,0 100%,0% 100%);
    }
    to{
        clip-path: polygon(0 0,100% 0,100% 100%,0% 100%);
    }
}

@keyframes efecto{
    50%{
        border-color: white;
    }
}

.icono-ojo{
    cursor: pointer;
    z-index: +3;
    color: #c9c9c9;
    position: absolute;
    top: 28%;
    right: 18%;
}

.captcha label{
    display: block;
    font-size: 15px;
    color: var(--celtic-blue);
    margin-bottom: 5px;
}

.captcha {
    margin: 15px 0px;
}

.captcha .preview {
    color: var(--celtic-blue);
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed var(--celtic-blue);
    font-family: "monospace";
    font-weight: bold;
    background: white;
}

.captcha .preview span {
    display: inline-block;
    user-select: none;

}

.captcha .captcha-form {
    display: flex;
}

.captcha .captcha-form {
    width: 100%;
}

.captcha .captcha-form input{
    width: 100%;
    padding: 3px;
    border: 1px solid #888;
}

.captcha .captcha-form .captcha-refresh{
    width: 40px;
    padding: 0px;
    outline: none;
    margin-right: 0px;
    background: #888;
    color: #eee;
    cursor: pointer;
}

.caja-login {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: url('../img/MeetingDev.jpg') no-repeat !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.login-box-background {
    background: rgba(0, 0, 0, .7);
}

.tituloLogo h1{
    color: var(--celestial-blue);
    font-family: "Roboto";
}

.tituloSesion h2{
    color: var(--celtic-blue);
    font-family: "Roboto";
}