:root{

    /* COLORES MARCA */
    --vortex-blue:#0A1F44;
    --precision-gray:#6B7280;
    --excellence-gold:#C9A24D;

    --white:#FFFFFF;
    --black:#000000;

}

body {
    margin: 0;
    padding: 0;
}

.login-body {
    min-height: 100vh;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 40px;
    padding-right: 80px;

    background-image: url('/img/background/login-desktop.jpeg');
    background-size: cover;
    background-position: center;

    overflow: hidden;
    position: relative;
}

/* Oscurece ligeramente */
.login-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background:rgba(0,0,0,0.15);
}

.login-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

/* CAJA LOGIN */
/* .login-box {

    width: 100%;
    max-width: 450px;

    padding: 40px;

    border-radius: 30px;

    background: rgba(9, 20, 48, 0.55);

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.4);

    color: white;
} */
.login-box{

    width:100%;
    max-width:450px;

    padding:80px 40px;

    border-radius:15px;

    /* background:rgba(10,31,68,0.7); */
    /* background: rgba(7,20,43,0.75); */
    background: rgba(0,15,34,0.65);

    /* BORDE BRILLOSO */
    border:1px solid rgba(255,255,255,0.18);

    /* EFECTO GLASS */
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    /* SOMBRAS */
    box-shadow:
        0 0 40px rgba(0,0,0,0.45),
        inset 0 0 0.5px rgba(255,255,255,0.35),
        inset 0 1px 1px rgba(255,255,255,0.12);

    color:white;

    position:relative;

    overflow:hidden;
}

.login-line{

    width:60px;
    height:3px;

    margin:0 auto 25px auto;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--excellence-gold),
        #f0d38d
    );

    box-shadow:
        0 0 12px rgba(201,162,77,0.65);

}


.login-box label {
    color: white;
    font-weight: 600;
}

.login-box .form-control {

    /* height: 56px; */

    /* background: rgba(255, 255, 255, 0.04); */
    background: rgba(0,15,34);

    border: 1px solid var(--precision-gray);
    color: white;
    border-radius: 8px;
    padding-left: 14px;

}

.login-box .form-control:focus {

    background: rgba(255, 255, 255, 0.06);
    color: white;
    border-color: var(--excellence-gold);
    box-shadow: 0 0 12px rgba(79, 111, 255, 0.4);

}

.login-box .form-control::placeholder {
    color: var(--precision-gray);
}

/* BOTÓN */
.login-btn {

    height: 56px;
    border: none;
    border-radius: 10px;

    /* background:linear-gradient(
        90deg,
        #16356d,
        var(--vortex-blue)
    ); */
    background:linear-gradient(90deg,#4f7dff, #355dff);
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(79, 125, 255, 0.45);
}

#eye {
    color: var(--precision-gray) !important;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .login-body {

        justify-content: center;

        padding: 20px;
        margin-top: 15px;

        background-image: url('/img/background/login-mobile.jpeg');
    }

    .login-container {
        justify-content: center;
    }

    .login-box {

        max-width: 100%;

        padding: 30px 24px;

        border-radius: 15px;
    }

    .login-box img {
        max-width: 220px !important;
    }

}

.input-icon {
    position: relative;
}

.input-icon input{
    padding-left: 48px !important;
}

.input-icon i:not(.toggle-password){
    position: absolute;
    left: 16px;
    top: 50%;
    transform:translateY(-50%);
    color:var(--precision-gray);
    font-size:15px;
    z-index:10;
}

.toggle-password{

    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:var(--precision-gray);
    font-size:15px;
    z-index:10;
}