/*----------------------------------------
    Login Page
------------------------------------------*/
.login-bg
{
    /* background-image: url('../../images/gallery/flat-bg.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
}
.header-hacienda-login {
    /* background-image: url('../../images/hacienda/header-login.png'); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #FF6B35 0%, #FF6B35 70%, #004a5d 70%, #004a5d 100%);
    padding: 0.8rem 2rem;
    position: relative;
    max-width: 100%;
    height: 74px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-hacienda-login .logo-container {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
}

.header-hacienda-login .logo-jalisco {
    height: 40px;
    margin-right: 10px;
}

.header-hacienda-login .logo-hacienda {
    height: 35px;
    margin-right: 15px;
}

.header-hacienda-login .diagonal-divider {
position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    left: auto;
    width: 90%;
    background-color: #004a5d;
    transform: skew(-25deg) translate(5%);
    z-index: 1;
    overflow: hidden;
}

.header-hacienda-login .gov-menu {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-hacienda-login .gov-menu-list {
   display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-hacienda-login .gov-menu-list li {
    margin-right: 20px;
}

.header-hacienda-login .gov-menu-list li:last-child {
    margin-right: 0;
}

.header-hacienda-login .gov-menu-list li a {
color: #fff;
    text-decoration: none;
    font-size: .9rem;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.header-hacienda-login .gov-menu-list li a:hover {
    color: #ffd700;
}



#login-page
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    height: 60vh;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}

#login-page .card-panel.border-radius-6.login-card
{
    margin-left: 0 !important;
}

/* Footer personalizado */
.custom-footer {
    background-color: #537a91;
    width: 100%;
    margin-top: auto;
    min-height: 264px;
}
.custom-footer .text-white {
    --bs-text-opacity: 1;
    color: white !important;
}
footer.custom-footer.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}
.custom-footer .logo-footer {
  position: relative;
  bottom: 23px;
    width: 20%;
}
.custom-footer .text-center {
    text-align: center !important;
}

.custom-footer p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff
}
.custom-footer .img-fluid {
    max-height: 60px
}

.custom-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Media Query para dispositivos móviles */
@media screen and (max-width: 768px) {
    .header-hacienda-login .diagonal-divider {
        width: 60%;
        max-width: 60%;
        right: -50px;
        transform: skew(-25deg) translate(-5%);
        box-sizing: border-box;
    }
    .custom-footer {
        min-height: unset;
    }
    
.custom-footer .logo-footer {
  position: relative;
  bottom: 21px;
    width: 50%;
}
    .custom-footer p {
        font-size: 12px;
    }
}
