
.bg-left-login-2 {
    background: rgb(2, 222, 172);
    background: linear-gradient(90deg, rgba(2, 222, 172, 1) 0%, rgba(2, 222, 172, 0.3827731776304272) 100%);
    height: 100vh;
    width: 40vw;
    z-index: 0;
    clip-path: ellipse(100% 95% at left);
    top: 11px;
    left: 11px;
    position: absolute;
}

.bg-left-login-3 {
    background: rgb(1, 106, 82);
    background: linear-gradient(90deg, rgba(1, 106, 82, 1) 0%, rgba(1, 106, 82, 0.3827731776304272) 100%);
    height: 100vh;
    width: 40vw;
    z-index: 0;
    clip-path: ellipse(100% 92% at left);
    top: -12px;
    left: 16px;
    animation: pulse 5s infinite;
    position: absolute;
}

@keyframes pulse {
    0% {
        background-color: #cceee6;
    }
    50% {
        background-color: #00a983;
    }
    100% {
        background-color: #cceee6;
    }
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Esto asegura que el div ocupe toda la altura de la pantalla */
}
