body {
            background: #fff;
            background-image: url('/frontend/assets/img/bg_2.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
        }
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .login-box {
            background: #fff;
            padding: 50px 30px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            width: 50%;
            max-width: 400px;
            margin: 0 auto;
            position:relative; 
            left:-340px;
            border-radius: 5px;
            height: 380px;
        }

        .modal-psw {
            display: block;
            padding: 24px;
            border-radius: 4px;
            box-sizing: border-box;
            overflow: auto;
            outline: 0;
            width: 100%;
            height: 100%;
            min-height: inherit;
            max-height: inherit;
        }
        .bdv-logo {
            height: 80px;
            width: 100%;
        }
        .bdv-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: #0057b8;
            margin-left: 0.5rem;
        }
        .bdv-title span {
            color: #0071ce;
            font-weight: 700;
        }
        .form-control {
            background: #f6f6f6;
            border: none;
            border-bottom: 2px solid #e0e0e0;
            
            border-radius: 0;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        .modal-feo{
            padding: 4rem 5rem;
        }
        .btn-bdv {
            background: #0067b1;
            color: #f6f6f6;
            border: none;
            width: 50%;
            font-size: 14px;
            padding: 0.7rem 0;
            border-radius: 3px;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
        }
        .btn-bdv:hover {
            background: #0067b1;
            color: #ffffff42;
        }
        .login-links {
            font-size: 1rem;
            color: #888;
            text-align: center;
            font-weight: 700;
        }
        .login-links a {
            color: #888;
            text-decoration: none;
            font-weight: 700;
        }
        .promo-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
        }
        .promo-bg-yellow {
            position: absolute;
            right: 0;
            top: 15%;
            width: 420px;
            height: 340px;
            background: #ffd600;
            border-radius: 60px;
            z-index: 1;
        }
        .promo-bg-red {
            position: absolute;
            left: 0;
            top: 30%;
            width: 180px;
            height: 320px;
            background: #e30613;
            border-radius: 60px;
            z-index: 1;
        }
        .boton-segundario-feo{
            background-color:#0067b1;
            width: 100px;
            display: flex;
            justify-content: center;
            color:#fff;
            box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
            margin-left: 20px;
        }
        .titulo-password{
            color: #0071ce;
            font-weight: 700;
            font-size: 18px;
            width: 143%;
            position: relative;
            right: 29px;
        }
        .boton-principal-feo {
            background-color: #0067b1;
            width: 100px;
            display: flex;
            justify-content: center;
            color: #fff;
            box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
        }
        .boton-principal-feo:disabled {
            background: #d9d9d9 !important;
            color: #00000042 !important;
            opacity: 0.7;
            box-shadow: none;
            cursor: not-allowed;
            border: none;
        }
/* 
        .psw-feo-modal {
            border-radius: 5px;
            width: 395px;
            position: relative;
            left: 70px;
        } */

        .promo-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .promo-img {
            width: 320px;
            margin-bottom: 1.5rem;
        }
        .promo-text {
            background: #0071ce;
            color: #fff;
            border-radius: 30px 30px 0 0;
            padding: 2rem 2.5rem 1.5rem 2.5rem;
            font-size: 1.5rem;
            font-weight: 400;
            margin-top: 1.5rem;
        }
        .promo-text span {
            color: #ffd600;
            font-weight: 700;
        }


        @media (max-width: 1060px) {
            .login-box{
                position: relative;
                left: 12px;
                width: 50%;
                max-width: 430px;
            }
            .bdv-logo {
                height: 42px;
                width: 80%;
            }
        }
        
        @media (max-width: 850px) {
            .promo-section, .promo-bg-yellow, .promo-bg-red {
                display: none;
            }
            .login-container {
                justify-content: center;
            }
            body{
                background-color: #ededed;
                background-image: none;
            }
            .login-box{
                position: relative;
                left: 1px;
                width: 70%;
                max-width: 500px;

            }
        }

.custom-error-box {
    background: #1976d2;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 15px;
    position: fixed;
    left: 50%;
    top: 90%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 90vw;
    z-index: 2000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}



.custom-error-box .btn {
    font-weight: 500;
    font-size: 15px;
    padding: 4px 18px;
    background: #e3e8ef;
    color: #1976d2;
    border: none;
    transition: background 0.2s;
}

.custom-error-box .btn:hover {
    background: #cfdcd3;
    color: #feffff;
}

.btn-bdv:hover{
    background: #0056b3;
    color: #fff;
}
.boton-principal-feo:hover{
    background: #0056b3;
    color: #fff;
}
.boton-segundario-feo:hover{
    background: #0056b3;
    color: #fff;
}

.bdv-logo {
    max-width: 100%;
    height: auto;
}

.form-control {
    padding: 15px 20px;
    font-size: 16px;
    margin-bottom: 30px;
    border-bottom: 1px solid #a8a8a8;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #bb1b47;
    box-shadow: 0 0 8px rgba(0, 113, 206, 0.2);
}


.btn-bdv:disabled {
    background: #d9d9d9;
    color: #00000042;
    opacity: 0.7;
    box-shadow: 0 3px 1px -2px rgba(255, 255, 255, 0.2), 0 2px 2px 0 rgb(255, 255, 255), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.login-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}



/* Floating label styles for user input */
.input-group {
    position: relative;
}

.input-group .form-label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: #888;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
    z-index: 100;
}

.input-group input:focus + .form-label,
.input-group input:not(:placeholder-shown) + .form-label {
    top: -1px;
    left: 15px;
    font-size: 12px;
    color: #bb1b47;
    background: #fff;
    padding: 0 4px;
    z-index: 100;
}

.asterisco {
    color: #888; /* gris por defecto */
}

/* Asterisco azul solo cuando el input está en focus */
.input-group input:focus + .form-label .asterisco {
    color: #0071ce;
}

.asterisco:focus {
    color: #1f00ce;
}

.modal-feisimo{
    width: 300px;
    display: grid;
    justify-content: center;
}

/* Remove placeholder color/animation since we use label now */
.form-control::-webkit-input-placeholder { color: transparent; }
.form-control::-moz-placeholder { color: transparent; }
.form-control:-ms-input-placeholder { color: transparent; }
.form-control::placeholder { color: transparent; }
