/* 
    Created on : Mar 27, 2023, 10:25:33 AM
    Author     : Renato Vizuet
*/
@font-face 
    {
    font-family: 'myriadPro';
    src: url('../fonts/MyriadProRegular.ttf');
    font-weight: normal;
    font-style: normal;
    }

@font-face 
    {
    font-family: "WebSymbolsRegular";
    src: url('../fonts/websymbols-regular-webfont.eot');
    src: url('../fonts/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/websymbols-regular-webfont.woff') format('woff'),
         url('../fonts/websymbols-regular-webfont.ttf') format('truetype'),
         url('../fonts/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    }

body
    {
    margin-top: 30px;
    background: linear-gradient(to right, #FFFFFF, #FFFFFF, #999999);
    }

#blackOverlay
    {
    position: fixed; 
    width: 100%; 
    height: 100%; 
    top: 0px; 
    left: 0px; 
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 5; 
    display: none;
    }

#despliegaSpinner
    {
    background-color: #F1F2F3; 
    position: fixed; 
    top: 13%; 
    left: 6%; 
    width: 80%; 
    height: 60%; 
    padding: 1rem; 
    text-align: center; 
    border-radius: 20px; 
    border: none; 
    z-index: 10; 
    display: none;
    }

#loginContainer
    {
    background-color: #1F4164;
    padding: 35px;
    margin: 0px auto;
    width: 280px;
    border-radius: 30px;
    }
    
#loginContainer img
    {
    display: block;
    margin: 0px auto;
    margin-top: -20px;
    }
    
.letrero
    {
    font-family: 'myriadPro';
    font-size: 12pt;
    color: #FFFFFF;
    }
    
#loginContainer input[type="text"]
    {
    display: block;
    width: 90%;
    height: 30px;
    border: none;
    background-color: #FFFFFF;
    color: gray;
    box-shadow: 1px 1px 1px #CCCCCC inset;
    border-radius: 5px;
    margin-top: 20px;
    padding-left: 35px;
    transition: all 300ms;
    font-size: 12pt;
    margin-bottom: 10px;
    border: none;
    outline: none;
    }

#loginContainer input[type="text"]:focus
    {
    color: #484848;
    box-shadow: 1px 1px 1px gray inset;
    background-color: #CCCCCC;
    }

#nombreUsuario
    {
    display: block;
    font-family: 'myriadPro';
    text-align: center;
    font-size: 12pt;
    color: #FFFFFF;
    height: 20px;
    text-align: center;
    }

#loginContainer input[type='password']
    {
    display: block;
    width: 90%;
    height: 30px;
    border: none;
    background-color: #FFFFFF;
    color: gray;
    box-shadow: 1px 1px 1px #CCCCCC inset;
    border-radius: 5px;
    margin-top: 20px;
    padding-left: 35px;
    transition: all 300ms;
    font-size: 12pt;
    border: none;
    outline: none;
    }

#loginContainer input[type='password']:focus
    {
    color: #484848;
    box-shadow: 1px 1px 1px gray inset;
    background-color: #CCCCCC;
    }

.icon
    {
    font-family: 'WebSymbolsRegular';
    }

#userIcon
    {
    text-align: center;
    display: block;
    position: absolute;
    margin-left: 11px;
    margin-top: 11px;
    height: 30px;
    color: #555555;
    }

#passwordIcon
    {
    text-align: center;
    display: block;
    position: absolute;
    margin-left: 14px;
    margin-top: 11px;
    height: 30px;
    font-size: 20px;
    color: #555555;
    }

.button
    {
    display: block;
    margin: 25px auto;
    width: 35%;
    background-color: #88AABB;
    color: #FFFFFF;
    font-family: 'myriadPro';
    border: none;
    padding: 5px 10px 5px 10px;
    transition: all 300ms;
    border-radius: 3px;
    font-size: 11pt;
    text-transform: uppercase;
    }

.button:hover
    {
    background-color: #99BBCC;
    box-shadow: 2px 2px 3px #000000;
    }
    
#loginContainer #separador
    {
    height: 20px;
    }

.centrado
    {
    text-align: center;
    margin-top: 15px;
    }
    
a
    {
    margin: 15px auto;
    font-family: 'myriadPro';
    color: #88AABB;
    text-decoration: none;
    transition: all 300ms;
    }

a:hover
    {
    color: #FFFFFF;
    text-decoration: underline;
    }
    
#loginContainer h1
    {
    display: block;
    text-align: center;
    font-family: 'myriadPro';
    color: #FFFFFF;
    font-size: 13pt;
    margin-top: 45px;
    margin-bottom: -15px;
    font-weight: normal;
    }

.italicGrayText
    {
    font-family: 'myriadPro';
    color: #646464;
    font-size: 12pt;
    font-style: italic;
    }

#notaPie
    {
    margin: 0px auto;
    margin-top: 8px;
    font-family: 'myriadPro';
    font-size: 8pt;
    color: #1B4164;
    text-align: center;
    }

/* Efectos de sombra general -------------------------- */
.drop-shadow 
    {
    float: center;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }

.drop-shadow:before,
.drop-shadow:after 
    {
    content: "";
    position: absolute;
    z-index: -2;
    }

.raised /* Caja elevada */
    {
    -webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }

/* ---------------------------------------------------- */