body {
    background: url('../../personalice/img/fondo_login_web.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85); /* Blanco semitransparente */
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    flex-direction: row;
}

.login-form {
    flex: 1;
    max-width: 350px;
    padding: 20px;
    border-radius: 15px;
}

.login-form img {
    display: none;
}

.login-form h1 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
}

.login-form .form-control {
    width: 95%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 15px;
}

.login-form .btn {
    width: 95%;
    padding: 12px;
    background-color: #182179;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.login-form .btn:hover {
    background-color: #17217a;
}

.login-form .img {
    width: 100px;
    height: 50px;
    padding: 12px;
}

.login-image {
    flex: 1;
    text-align: center;
}

.login-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    body {
        background: url('../../personalice/img/fondo_login_celular.jpg') no-repeat center center fixed;
    }

    .login-container {
        flex-direction: column;
        width: 75%;
    }

    .login-form img {
        height: 60px;
        display: block;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .login-form h1 {
        display: none;
    }

    .login-image {
        display: none;
    }
}
