/*Barra de navegacion*/
.navegacion {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 10vh;
    background: var(--colornav);
    border-bottom: 1px solid var(--colorg);
}
.nav_contenedor {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.nav_contenedor h2 {
    color: #ffff;
}
.nav_end {
    width: 100%;
    height: 100%;
    padding: 13px 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.nav_end a {
    text-align: center;
    color: #ffff;
    text-decoration: none;
}
.nav_presentacion {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.img_login {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inicio_sesion_info {
    width: 50%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img_login img {
    width: 35%;
    height: 100%;
}
.btn_cerrar_sesion {
    width: 300px;
    color: #ffff !important;
    text-align: center;
    background: var(--colorg);
    padding: 6px 5px;
    border: 1px solid #ffff;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.btn_cerrar_sesion:hover {
    border: 1px solid var(--colorg);
    color: black !important;
    background: #ffff;
}
/*Fin de la barra de navegacion*/
.contenedor {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 90vh;
    min-height: 90vh;
    max-height: 90vh;
    position: relative;
    background: #fff;
}

.fondo {
    width: 100%;
    height: 100%;
    position: absolute;
}
.formulario {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login {
    position: relative;
    width: 25%;
    height: 60%;
    border-left: 2px solid var(--colorg);
    z-index: 100;
}
.mensaje-error {
    width: 80%;
    text-align: center;
    font-size: 12px;
    height: auto;
    color: var(--colorbtn);
    transition: all 2s ease;
}
#animacion_uno_login {
    width: 30%;
    height: 1px;
    border-radius: 10px;
    box-shadow: 0px 0px 50px var(--colorg);
    background: var(--colorg);
    top: 0;
    position: absolute;
    animation-name: example;
    animation-duration: 10s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: infinite;
}
#animacion_dos_login {
    width: 30%;
    height: 1px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px var(--colorg);
    background: var(--colorg);
    bottom: 0;
    right: 0;
    position: absolute;
    animation-name: example;
    animation-duration: 10s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: infinite;
}
#animacion_uno_login:hover,
#animacion_dos_login:hover {
    cursor: pointer;
    animation-play-state: paused;
}
@keyframes example {
    0% {
        margin-left: 0%;
        box-shadow: 0px 0px 20px var(--colorg);
    }
    50% {
        margin-left: 70%;
        box-shadow: 0px 0px 30px var(--colorg);
    }

    75% {
        margin-right: 70%;
        box-shadow: 0px 0px 40px var(--colorg);
    }
    100% {
        margin-right: 0%;
        box-shadow: 0px 0px 50px var(--colorg);
    }
}
.registro {
    width: 40%;
    height: 65%;
    border-radius: 15px;
    background: url("/img/fotito.jpg");
    background-size: cover;
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.registro div {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 50px var(--colorg);
}
.titulo {
    text-align: center;
    color: #ffff;
}

/*Formulario de login*/
.form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 2px solid var(--colorg);
}
.form_contenedor {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form_contenedor_recordarme {
    width: 100%;
    padding: 20px 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.recordarme {
    color: var(--colorg);
}
#remember {
    cursor: pointer;
    accent-color: var(--colorg);
}

.caja_form {
    width: 70%;
    border: none;
    border-bottom: 2px solid var(--colorg);
    padding: 15px 5px;
    background: transparent;
    outline: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn_envia {
    width: 60%;
    margin: 15px 0px;
    color: #ffff;
    background: var(--colorg);
    padding: 15px 5px;
    border: 1px solid var(--colorg);
    border-radius: 17px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.btn_envia:hover {
    color: var(--colorg);
    background: transparent;
}
.p_info {
    text-align: center;
    color: #ffff;
}

/*Pantallas acomodo*/
@media only screen and (max-width: 600px) {
    .img_login img {
        width: 55%;
        height: 100%;
    }
    .navegacion {
        height: 15vh;
    }
    .nav_contenedor {
        flex-direction: column;
    }
    .nav_presentacion {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav_end {
        flex-direction: column;
    }
    .nav_lagout {
        margin-top: 4px;
    }
    .formulario {
        flex-direction: column;
    }
    .registro {
        display: none;
    }
    .login {
        position: relative;
        width: 80%;
        height: 70%;
        border-right: 2px solid var(--colorg);
        z-index: 100;
    }
}

@media only screen and (max-width: 300px) {
    .img_login img {
        width: 70%;
        height: 100%;
    }
    .nav_presentacion {
        flex-direction: column-reverse;
    }
    .nav_presentacion h2 {
        width: 90%;
    }
    .btn_cerrar_sesion {
        width: 90%;
        margin-top: 3px;
        margin-bottom: 5px;
    }
    .nav_end h2 {
        width: 100%;
        text-align: center;
        font-size: 18px;
    }
    .nav_lagout {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
}
