﻿.button_large {
    background-color: #284560;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    width: 200px;
}

.inputTxt {
    box-sizing: border-box;
    background-image: none;
    padding: 0 15px;
    border: none;
    width: 270px !important;
    max-width: 270px;
    min-width: 270px;
    box-shadow: 0px 0px 27px 0px rgba(18, 134, 189, 0.26);
    border-bottom: 4px solid #1286BD;
    height: 46px;
    color: #888888;
    margin: 0 0 10px 0;
    font-size: 1.385em;
    line-height: 1.111em;
    font-weight: 100;
    text-transform: none;
    display: block; /* Obliga al elemento a ocupar todo el ancho disponible */
    margin: 0 auto; /* Lo centra horizontalmente */
}

.myCheckboxList input[type="checkbox"] {
    margin-right: 5px; /* Adjust the value as needed */
}

.ButtonFF {
    background-color: #284560;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    width: 200px;
}
.center-table {
    margin-left: auto;
    margin-right: auto;
}

/* Atacamos el contenedor de Select2 para que use el mismo modelo de Bootstrap */
.select2-container--default .select2-selection--single {
    /* Copiamos tus valores de .form-control */
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    background-color: var(--bs-body-bg) !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: var(--bs-border-radius) !important;
    /* Forzamos el alto final de 38px que resulta de esa suma */
    height: calc(1.5rem + 0.75rem + 2px) !important;
    display: flex !important;
    align-items: center !important;
}
    /* Ajustamos el texto interno para que no herede paddings extra de la librería */
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 1.5 !important;
        padding: 0 !important;
        color: var(--bs-body-color) !important;
    }

    /* Centramos la flecha de Select2 */
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 100% !important;
        top: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

/* Estilo del Panel Central */
 /* Estilo para el contenedor que envuelve al panel */
.login-container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    min-height: 100vh; /* Usa todo el alto de la pantalla */
    background-color: #f4f4f4; /* Opcional: fondo de página */
}
 
