/* General cards */
:root {
    --wwlcolorprincipal: #012a47;
    --wwlcoloresimagen: #EDEDED;
}
.wwl-body {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(90deg, #e2e2e2, #c9d6ff);
}

.slide-card {
    max-width: 900px;
    width: 100%;
    border-radius: 25px;
    position: absolute;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease;
}

    /* Estado visible */
    .slide-card.active {
        position: relative;
        opacity: 1;
        transform: translateX(0);
    }

/* Colores */
.login-left {
    background-color: var(--wwlcoloresimagen);
    border-radius: 25px;
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-right {
    background-color: var(--wwlcoloresimagen);
    border-radius: 25px;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centrado absoluto */
.container-fluid {
    position: relative;
    justify-content: center !important;
}
