﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');


body {
    font-family: "Lato", sans-serif;
    font-weight: bold;
    height: 100vh;
}

a {
    color: #256696;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}


h5 {
    font-weight: bold;
    color: #256696;
    margin: 13px;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #256696;
}


/*TEXTO CORREO Y CONTRASE�A */
div .textocorr {
    font-weight: 100;
    color: #256696;
    display: block;
}

div .textocon {
    font-weight: 100;
    color: #256696;
    display: block;
}

/* - */
p.textoact {
    text-decoration: underline;
    font-weight: 300;
    margin: 10px;
    color: #256696;
}


.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

.form-signin {
    max-width: 600px;
    padding: 1rem;
}

    .form-signin .form-floating:focus-within {
        z-index: 2;
    }

.bg_login {
    background: rgb(44,179,213);
    background-image: url(../images/login/bg_login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 20p;
    background: #ffffffcf;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    background-color: #256696;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

    /* BOT�N RECUPERAR CONTRASE�A */
    #formFooter a {
        color: white;
        font-size: 12px;
        font-weight: 400;
        background-color: #7BAAD1;
        border: solid;
        border-spacing: 10px 30px;
        border-color: #7BAAD1;
        border-radius: 20px;
        padding: 0px 35px 0px 35px;
    }


h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #055eb0;
}

/* BOT�N ENTRAR */

input[type=button], input[type=submit], input[type=reset] {
    background-color: #B1141F;
    font-weight: 400;
    border: none;
    color: white;
    width: 100px;
    height: 20px;
    margin: auto;
    padding: 1px 6px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        background-color: #256696;
    }

    input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

/* ESPACIOS PARA ESCRIBIR CORREO ELECTR�NICO Y CONTRASE�A*/
input[type=text], input[type=password] {
    background-color: white;
    border: none;
    color: #256696;
    padding: 7px 32px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 5px;
    width: 55%;
    height: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 16px;
}




    input[type=text]:placeholder {
        color: #cccccc;
    }


.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: white;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: white;
}

    .underlineHover:hover:after {
        width: 100%;
        color: white;
    }


*:focus {
    outline: none;
}

#icon {
    width: 50%;
    padding: 12px;
}

* {
    box-sizing: border-box;
}




/**
    ESTILOS LOADER DE PROCESOS
*/
.fondoCargando {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1999 !important;
    display: none;
}

.textoCargando {
    position: fixed;
    top: 46%;
    left: 15px;
    right: 0px;
    text-align: center;
    z-index: 2001 !important;
    color: #f3f3f3;
}

.loader {
    position: absolute;
    top: 43%;
    z-index: 2000 !important;
    left: 0px;
    right: 0px;
    margin: auto !important;
}

/*FIN LOADER */

