﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css?family=Roboto');

html, body {
    font-family: 'Roboto Slab' sans-serif;
}

/*Ventana Modal Para Error en Index Login*/
.modal {
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.contenedor-Mensaje {
    background-color: #fff;
    box-shadow: 15px 15px 25px #282727;
    width: 400px;
    height: 250px;
    position: relative;
    margin: auto;
    border-radius: 4px;
    transition: all 700ms ease;
    transform: translateY(-40%);
    border: 1.3px solid white;
}

    .contenedor-Mensaje header {
        background: #333333;
        color: #fff;
        height: 15%;
        font-size: large;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-content: center;
    }

    .contenedor-Mensaje label {
        color: #fff;
        top: 1px;
        right: 15px;
        font-size: 23px;
        font-weight: 500;
        position: absolute;
        cursor: pointer;
    }

.card-Mensaje {
    background-color: #fff;
    color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: large;
    font-weight: 400;
    height: 60%;
}

#btn-modal:checked ~ .modal {
    opacity: 1;
    visibility: visible;
}

    #btn-modal:checked ~ .modal .contenedor-Mensaje {
        transform: translateY(-20%);
    }

#btn-modal {
    display: none;
}
/*-------------------------------------------*/

/*Ventana Modal Para Recuperar Clave en Index Login*/
.modalEC {
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.contenedor-EnviarClave {
    background-color: #fff;
    box-shadow: 15px 15px 25px #282727;
    width: 400px;
    height: 260px;
    position: relative;
    margin: auto;
    border-radius: 4px;
    transition: all 700ms ease;
    transform: translateY(-40%);
    border: 1.3px solid white;
}

    .contenedor-EnviarClave header {
        background: #333333;
        color: #fff;
        height: 15%;
        font-size: large;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-content: center;
    }

    .contenedor-EnviarClave label {
        color: #fff;
        top: 1px;
        right: 15px;
        font-size: 23px;
        font-weight: 500;
        position: absolute;
        cursor: pointer;
    }

.card-Correo {
    background-color: #fff;
    color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: large;
    font-weight: 400;
    height: 60%;
}

#btn-modalEC:checked ~ .modalEC {
    opacity: 1;
    visibility: visible;
}

    #btn-modalEC:checked ~ .modalEC .contenedor-EnviarClave {
        transform: translateY(-20%);
    }

#btn-modalEC {
    display: none;
}
