﻿html, body {
    height: 100%;
    background: #1A315B; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #27AAE1, #1A315B); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #27AAE1, #1A315B); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/*.login-block {
    float: left;
    width: 100%;
    padding: 5% 0px;
}*/

.login-block {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

    .login-block > .container {
        width: 100%;
        min-height: 600px;
    }

        .login-block > .container > .row {
            min-height: 600px;
        }

.login-sec {
    padding: 30px 30px 10px 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: #FEB58A;
        }

        .login-sec .copy-text a {
            color: #E36262;
        }

    .login-sec h2 {
        margin-bottom: 30px;
        font-weight: 800;
        font-size: 30px;
        color: #DE6262;
    }

        .login-sec h2:after {
            content: " ";
            width: 100px;
            height: 5px;
            background: #FEB58A;
            display: block;
            margin-top: 20px;
            border-radius: 3px;
            margin-left: auto;
            margin-right: auto
        }

.banner-sec {
    border-radius: 0 10px 10px 0;
    padding: 0;
    overflow: hidden;
}
    .banner-sec img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 15px 20px 0px rgba(0,0,0,0.1);
}

.banner-radius {
    border-radius: 0 10px 10px 0;
}

.btn-login {
    background: #1A315B;
    color: #fff;
    font-weight: 600;
}

    .btn-login:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

.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;
    }

.text-primary-firma {
    color: #1A315B !important;
}

/* Mensaje informativo del método de autenticación */
.login-info-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient( 135deg, rgba(230, 241, 255, 0.95), rgba(244, 248, 255, 0.95) );
    border: 1px solid #d2e3f8;
    border-radius: 10px;
    color: #24364b;
    font-size: 0.84rem;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(31, 72, 125, 0.08);
}

.login-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #2878d0;
    font-size: 1rem;
    box-shadow: 0 2px 7px rgba(40, 120, 208, 0.15);
}

.login-info-text {
    flex: 1;
}

    .login-info-text ol {
        margin: 0.4rem 0 0;
        padding-left: 1.15rem;
    }

    .login-info-text li {
        margin-bottom: 0.35rem;
    }

        .login-info-text li:last-child {
            margin-bottom: 0;
        }
