:root {
    --border-radius: 8px;
    --bg-color: #e5e7eb;
    --panels-color: #ffffffa1;
    --card-colors: #f5f5f5d2;
    --font-light-color: #11182d;
    --font-color: #11182d;
    --input-hover: #f5f5f5;
    --ingreso-bg-color: #f5f5f5;
    --li-hover-color: rgb(228, 228, 228);
    --orderbybutton-color: #94caef;
}

[data-theme="light-theme"] {
    --border-radius: 8px;
    --bg-color: #16181c;
    --panels-color: #26292f;
    --card-colors: #33363d;
    --font-light-color: rgba(236, 249, 251, 1);
    --font-color: #b0bac5;
    --input-hover: #383c42;
    --ingreso-bg-color: #33363d;
    --li-hover-color: rgb(50, 50, 50);
    --orderbybutton-color: #346c94;
}

body{
    margin: 0px;
    background-image: url(/images/background.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--font-color);
    background-color: var(--bg-color);
    padding: 0;
    margin: 0;
}

/* background-color: #01212e; */

.error{
    display: inline;
    color: red;
}

.nodisplay{
    display: none;
}

.login {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    border-radius: var(--border-radius);
    background: var(--card-colors);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 30px;
    min-width: 360px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.inputLogin{
    background-color: var(--bg-color);
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0px;
}

.inputIcon{
    background-color: #6dbcf0;
}

input:hover {
    background-color: #f5f5f5d2;
}

input:focus {
    outline: 3px solid #94caef;
}

select option {
    height: auto;
    word-wrap: break-word;
    white-space: normal;
}

button {
    background-color: rgb(32, 32, 32) !important;
    color: white !important;
    border: 1px rgb(32, 32, 32) solid !important;
}

button:hover {
    background-color: rgb(46, 46, 46) !important;
}

label {
    font-size: 20px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /* background-color: var(--panels-color); */
    color: var(--font-color);
    padding: 8px;
    text-align: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid;
    border-color: #3498db transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
  
@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}