/* ────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */
/** ESTILOS INTRANET																								  */
/* ────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */

@charset "UTF-8";

/** FUENTES ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i');


/** COLORES ───────────────────────────────────────────────────────────────────────────────────────────────────────── */

:root {
    --color-gris: #343434;
    --color-gris-claro: #DEDEDE;
    --color-blanco: #ffffff;

    --color-tarjetas: #60893a;

    --background: #2aa869;
    --colorInicioSesion: #d5862d;

    --text-color-1: #ffffff;
    --text-color-2: #000000;

    --radius: 15px;
    --app-width: 600px;
}


/** CONFIGURACIÓN CSS ─────────────────────────────────────────────────────────────────────────────────────────────── */

html {
	font-size: 16px;
	scrollbar-width: none !important;
    font-family: 'Open Sans', sans-serif;
}

body {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
    margin: 0;
}

.contenedor{
    height: 100vh;
    width: 100vw;
    background-image: url('../imagenes/fondo.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/**********************************************************************************************************************/
/** INICIO SESION *****************************************************************************************************/
/**********************************************************************************************************************/

.form-container{
    border: 1px solid hsla(0, 0%, 65%, 0.158);
    box-shadow: 0 0 36px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 2rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 400px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}
.form-container .bloqueImagenLogin{
    position: absolute;
    top: 3rem;
}
.form-container img{
    width: 200px;
}
.botonInicioSesion{
    background-color: var(--colorInicioSesion);
    color: var(--text-color-2);
    display: block;
    padding: 13px;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 70%;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.1s ease-in-out;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.botonInicioSesion:hover{
    box-shadow: 0 0 10px 1px rgb(0, 0, 0, 0.15);
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}

form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.frmInicioSesion{
    width: 70%;
}
.frmInicioSesion input{
    background-color: transparent;
    border: 0;
    border-bottom: 2px #000000 solid;
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    color: #000000;
}
.frmInicioSesion input:focus,
.frmInicioSesion input:valid{
    outline: 0;
}
.frmInicioSesion label{
    position: relative;
    bottom: 50px;
    left: 0;
    pointer-events: none;
}
.frmInicioSesion label span{
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    color: var(--text-color-2);
    -webkit-transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.frmInicioSesion input:focus+label span,
.frmInicioSesion input:valid+label span{
    transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
}

.textoRegistro{
    text-decoration: underline;
    cursor: pointer;
}
.textoRegistro:hover{
    color: #297fb8 !important;
}
/**************************************************************************************************************/
/** VIDEO *****************************************************************************************************/
/**************************************************************************************************************/

.contedorPrincipal{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contenedorVideo{
    box-shadow: 12px 7px 20px 5px #a7a7a7;
}

.cabeceraLogin{
	width: 100% !important;
    height: 75px !important;
	background-color: #000000;
    position: absolute;
    z-index: 99;
	display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 1rem;
	border-bottom: 5px solid var(--main-color-2);
}
.cabeceraLogin img {
    width: auto;
    height: 50px;
}