#logo-lixiview-login {
    height: 100px;
}

html {
    height: 100%;
}

body {
    height: 100%;
    color: #fff;
    font-family: Arial;
    font-size: 12px;
    margin: 0px;
    padding: 0px;
    font-family: 'Helvetica', sans-serif;
    background: rgba(0, 0, 0, 0.9);
    background-image: url("/static/img/login.png");
    background-size: auto;
    background-repeat: no-repeat;
}


.login-card {
    position: absolute;
    width: 400px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #282D32;
    box-shadow: 2px 10px 30px 10px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 39px 10px 33px 12px;
    gap: 20px;
    border: 1px dashed #FFFFFF;
}


/* Container styles */
.input-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Separación entre los campos de entrada */
}

/* Container styles */
.input-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Separación entre los campos de entrada */
}

/* Container styles */
.input-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Separación entre los campos de entrada */
}

/* Style for input fields with icons */
.input-user, .input-pass {
    position: relative;
    width: 300px;
    height: 44px;
    border: 1px solid #FFC105;
    box-sizing: border-box; /* Incluye el padding y el borde en el ancho y alto total del elemento */
    padding: 0 10px 0 40px; /* Ajuste del padding */
    display: flex;
    align-items: center;
    background-size: contain;
}

/* Specific styles for user input */
.input-user::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 24px;
    height: 24px;
    background: url("/static/icons/User.svg") no-repeat center center;
    background-size: contain;
}

/* Specific styles for password input */
.input-pass::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 24px;
    height: 24px;
    background: url("/static/icons/Password.svg") no-repeat center center;
    background-size: contain;
}

/* Style for the actual input fields */
.input-field {
    flex: 1; 
    background: none;
    border: none;
    outline: none;
    color: white;
    height: 100%;
    padding-left: 10px; 
    box-sizing: border-box;
}

/* To handle browsers filling in the fields automatically */
input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px #333 inset;
    -webkit-text-fill-color: white !important;
}

input:-webkit-autofill::first-line {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* Style for the login button */
.login-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 50px;
    margin-top: 70px;
    gap: 10px;
    width: 230px;
    height: 44px;
    background: #FFC105;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #081616;
}



.message_true {
    height: 36px;
    width: 260px;
    background-color: #ffcccc;
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 10px;
    margin: 0px 0;
    border-radius: 5px;
}
.message_false {
    height: 36px;
    width: 260px;
    visibility: hidden;
}

