/**
    * Ficheros:.........: login.css
    * Descripcion.......: Estilos para la pantalla Login
    * Fecha Creacion....: 17/01/2023
    * Fecha Modificacion: 
    *
    * @copyright CopyRight(C)2023 Daniel Rosado
    * @author Daniel Rosado
*/

/*                            Cuerpo de la página                             */
*{
    margin:0px;
    padding:0px;
}

body{
    background: url() #053f6c no-repeat center center fixed;
    background-color: #fff;
}
/* ************************************************************************** */
.Contenedor{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vw;
}
.AreaSuperior{
    position: fixed;
    top:0px;
    width: 100vw;     
    min-height: 175px;
    /*Se centra el contenido del div horizontal y verticalmente*/
    display:flex;
    justify-content: center;
    align-items: center;
}

.AreaCentral{
    position: fixed;
    top: calc(50% - 140px);
    width: 100%; 
    height: 280px;
    min-height: 280px;
    background-color: rgba(0,0,255,0.075);
}
    .AreaCentralIzq{
        float: left;
        width: 25%;
        height: 100%;
        background-color: rgba(140,140,140,0.12);
        
    }
    
        .AreaCentralIzqSup{
            float: left;
            width: 100%;
            height: 100%;
            /*Se centra el contenido del div horizontal y verticalmente*/
            display:flex;
            justify-content: center;
            align-items: center;
        }

    .AreaCentralCen{
        float: left;
        width: 50%;
        height: 100%;
        padding-top: 3%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .AreaCentralDer{    
        float: left;
        width: 15%;
        height: 100%;
        display: block;
    }

.AreaInferior{
    position: fixed;
    bottom: 0px;
    left:0px;
    width: 100vw; /*100% vuewoirt width*/
    height:  75px;/*30vh; /*33% viewport height*/
    min-height: 175px;
}

    .AreaInferiorSup{
        width: 100%;
        height: 70%;
        
    }
    .AreaInferiorInf{
        padding-top: 10px;
        background-color: #1d1d1b;
        width: 100%;
        height: 30%;
    }
        .AreaCopyRight{

            color: #00a89c;
            float: left;
            width: 100%;
            text-align: center;
        }

/*                              Area imagen usuario                           */
.ImagenUser {
    /*width: 150px;*/
    height: 20vw;
}


/**                    B O T O N E S   Y   E N L A C E S                     **/
.Boton_Azul{
    background-color: #0d4e9c;
    width: calc(50% - 20px);
    text-decoration: none;
    padding: 5px;
    font-weight: 300;
    font-size: 15px;
       /*calc(1em + 1vw);*/
    color: #ffffff;
    border-radius: 6px;
    border: 2px solid #00a89c;
    margin-bottom: 10px;
    margin-left:2px;
    margin-right:2px;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 1s;
    -o-transition-property: background-color, color;
    -o-transition-duration: 1s;
    
}
.Boton_Azul:hover{
    color: #1883ba;
    background-color: #ffffff;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 1s;
    -o-transition-property: background-color, color;
    -o-transition-duration: 1s;
}

.Boton_Gris{
    background-color: #00a89c;
    width: calc(50% - 20px);
    text-decoration: none;
    padding: 5px;
    font-weight: 300;
    font-size: 15px;
    color: #ffffff;
    border-radius: 6px;
    border: 2px solid #0d4e9c;
    margin-bottom: 10px;
    margin-left:2px;
    margin-right:2px;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 1s;
    -o-transition-property: background-color, color;
    -o-transition-duration: 1s;
}

.Boton_Gris:hover{
    color: #1883ba;
    background-color: #ffffff;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease-out;
    -webkit-transition-property: background-color, color;
    -webkit-transition-duration: 1s;
    -o-transition-property: background-color, color;
    -o-transition-duration: 1s;
}


    a:link{
        text-decoration:none;
        text-shadow:
            -1px -1px 1px #ccc,
            1px 1px 1px #ccc;
            
        color: #146c43;
        width: 100%;
        font-weight:bold;
    }
    a:focus{
        text-decoration:none;
        font-weight:bold;
        color:#ff0000;
    }
    a:active{
        color: #00a89c;
    }

    a:visited{
        text-decoration:none;
        color: #0d4e9c;
        font-weight:bold;
    }

    a:hover{
        text-decoration:none;
        color: #000;
    }



@media all and (max-width: 640px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
    .AreaSuperior{
        height:  20vh; /*33% viewport height*/
        min-height: 75px;
    }

    .AreaCentral{
        height: 40%;
        min-height: 280px;
    }
        .AreaCentralIzq{
            float: none;
            width: 100%;
            height: 35%;
        }

        .AreaCentralCen{
            float: none;
            width: 100%;
            height: 65%;
        }
        .AreaCentralDer{    
            display: none;
        }

    .AreaInferior{
        height: 100px;
        min-height: 100px;
    }

        .AreaInferiorSup{
            width: 100%;
            height: 70%;
        }
        .AreaInferiorInf{
            padding-top: 5px;
            width: 100%;
            height: 30%;
        }
    
    /**                             Area imagen usuario                      **/
    .ImagenUser {
        /*width: 100px;*/
        height: 100px;
    }

  
}