.alert-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
}

.auth-fluid {
    display: flex;
    height: 100vh;
    background-image: url('images/deposito.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-fluid-form-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-fluid-right {
    display: none;
    /* Ocultamos el contenido derecho para simplificar la vista de login */
}

.footer {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    /* Gradiente negro con opacidad */
    color: #fff;
    /* Texto blanco para contraste */
    padding: 10px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0;
    font-size: 14px;
    position: relative;
}

