.split-screen {
    display: flex;
    height: 100vh;
}

.slider-container {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider img.active {
    opacity: 1;
}

.slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.text-overlay {
    position: absolute;
    bottom: 40px;
    left: 20px;
    color: white;
    z-index: 2;
    max-width: 80%;
}

.text-overlay h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.text-overlay p {
    margin: 5px 0 0;
    font-size: 16px;
}

.form-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.bandera-col {
    width: 130px;
    position: absolute;
    top: -15px;
    right: 0px;
    cursor: pointer;
    z-index: 10;
}

.text-primary {
    text-decoration: none !important;
}

.text-primary:hover {
    text-decoration: none !important;
}

.logo-login {
    width: 200px;
    margin-bottom: 5px;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}