
.login-overlay-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.background-logos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg-logo {
    max-width: 200px;
    width: 100%;
    margin: 0.5rem 0;
}

.login-box {
    position: relative;
    z-index: 10;
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
}


.card-title-header {
    background-color: #343a40;
    color: white;
    padding: 1rem;
    margin: -1rem -1rem 1rem -1rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    font-weight: bold;
    text-align: center;
}

.card-link-line {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid #dee2e6;
    color: #0d6efd;
    transition: background-color 0.2s;
}

.card-link-line:hover {
        background-color: #f8f9fa;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.card {
    width: calc(20% - 16px);  5 cards per row with spacing 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}


.cards-container_inc {
    display: flex;
    justify-content: space-between;
    gap: 1rem; /* espacio entre tarjetas */
    flex-wrap: wrap; /* opcional: permite que bajen en pantallas pequeñas */
}

.card_inc {
    flex: 1; /* hace que cada card ocupe espacio igual */
    min-width: 250px; /* para evitar que sean demasiado pequeñas */
    margin: 0.5rem 0;
}
/*@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}*/