/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 23-nov-2023, 13:12:02
    Author     : Windows
*/

body{
    background: #3794ca;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
.cabecera-img {
    width: auto;
    height: 100%;
}

.cabecera-block {
    background: #034c6dcc;
    border-radius: 10px 0px 0px 10px;
    padding-bottom: 10px;
    padding-top: 10px;
}

.login-block {
    background: #3794ca;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #96f9ff, #3794ca);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #034c6dcc, #3794ca);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    float: left;
    width: 100%;
    padding: 50px 0;
}

.banner-sec {
    background: url(../assets/img/login/img1.jpg) no-repeat left bottom;
    background-size: cover;
    min-height: 500px;
    border-radius: 0 10px 10px 0;
    padding: 0;
}

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    border-radius: 0 10px 10px 0;
}

.carousel-caption {
    text-align: left;
    left: 5%;
}

.login-sec {
    padding: 50px 30px;
    position: relative;
}

.login-sec .copy-text {
    position: absolute;
    width: 80%;
    bottom: 20px;
    font-size: 13px;
    text-align: center;
}

.login-sec .copy-text i {
    color: #0dcaf0;
}

.login-sec .copy-text a {
    color: #0dcaf0;
}

.login-sec h2 {
    font-family: "Homer Simpson UI";
    font-family: "Courier New", monospace;
    font-weight: bold;
    padding-top: 20px;
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 30px;
    color: #126088;
}

.login-sec h2:after {
    content: "                        ";
    width: 100px;
    height: 5px;
    background: #126088;
    display: block;
    
}
/*
.btn-login {
        background: #DE6262;
        color: #fff;
        font-weight: 600;
}*/

.banner-text {
    width: 70%;
    position: absolute;
    bottom: 40px;
    padding-left: 20px;
}

.banner-text h2 {
    color: #fff;
    font-weight: 600;
}

.banner-text h2:after {
    content: " ";
    width: 100px;
    height: 5px;
    background: #FFF;
    display: block;
    margin-top: 20px;
    border-radius: 3px;
}

.banner-text p {
    color: #fff;
}

/**boton genial XD ***/

.btn-login {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    font-size: 15px;
    font-style: unset;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 10px;
    letter-spacing: 4px;
    background: #fff;
}

.btn-login:hover {
    background: #0dcaf0;
    color: #fff;
    border-radius: 5px;
    /*  box-shadow: 0 0 5px #0dcaf0,
                  0 0 25px #0dcaf0,
                  0 0 50px #0dcaf0,
                  0 0 100px #0dcaf0;*/
}

.btn-login span {
    position: absolute;
    display: block;
}

.btn-login span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000);
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%,100% {
        left: 100%;
    }
}

.btn-login span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #000);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%,100% {
        top: 100%;
    }
}

.btn-login span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #000);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%,100% {
        right: 100%;
    }
}

.btn-login span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #000);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%,100% {
        bottom: 100%;
    }
}

