        body{
       body {
    font-family: Arial, sans-serif;
    background-color: #e8e8e8;
    margin: 0;
    padding: 0x 0; /* Ajusté el padding vertical del body */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;   
}
.container {
    width: 1000px; /* Aumenté un poco más el ancho del contenedor */
    margin: 20px auto;
    border: 1px solid #b0b0b0;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}
.header {
    height: 90px;
    background: url('images/Banner_Sios.jpg') no-repeat left center; /* Ajusté el centrado horizontal de la imagen */
    background-size: contain;
    padding: 10px 20px; /* Agregué padding para el espacio blanco */
    box-sizing: border-box; /* Para que el padding no aumente la altura total */
}
.date-time-strip {
    background-color: white;
    padding: 10px 20px;
    text-align: right;
    font-size: 14px;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #d0d0d0;
}
.title-bar {
    background-color: #d9d9d9;
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    color: #444;
    border-bottom: 1px solid #aaa;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 10px; /* Agregué un poco de espacio debajo del título */
}
.connection-params {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
}
.login-content {
    background-color: #4a4a4a;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Para que la imagen se estire verticalmente */
    gap: 40px;
}
.form-area {
    width: 50%; /* Ajusté el ancho del formulario */
}
.image-area {
    width: 50%; /* Ajusté el ancho del área de la imagen */
    display: flex;
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
    background-color: #d0d0d0; /* Fondo del recuadro del engranaje */
    border: 1px solid #777; /* Borde del recuadro */
    border-radius: 5px;
    padding: 10px; /* Un poco de padding interno */
    box-sizing: border-box; /* Para que padding y border no afecten el ancho */
    min-height: 0; /* Permite que el contenido interno lo expanda */
}
.image-area img {
    max-width: 100%; /* La imagen no excederá el ancho del contenedor */
    max-height: 100%; /* La imagen no excederá la altura del contenedor */
    object-fit: contain; /* Ajusta la imagen dentro del contenedor manteniendo su proporción */
}
.login-table td {
    padding: 0 10px 15px 10px; /* Ajusté el padding de las celdas */
}
.label-row td {
    padding: 10px 10px 5px 10px;
    color: #f0f0f0;
    font-weight: normal;
    font-size: 14px;
    text-align: left;
}
select, input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    border-radius: 4px;
    box-sizing: border-box;
    height: 40px;
    font-size: 15px;
    background-color: #fff;
    color: #333;
}
.form-section {
    background-color: #6e6e6e;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 20px 0 15px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
}
.submit-button {
    text-align: center;
    margin-top: 30px;
}
.btn-enter {
    background: #007bff;
    color: white;
    border: 1px solid #0056b3;
    padding: 12px 0;
    width: 220px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 17px;
    transition: background 0.2s ease;
}
.btn-enter:hover {
    background: #0056b3;
}
.footer {
    padding: 12px;
    font-size: 11px;
    text-align: center;
    color: #555;
    line-height: 1.5;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
}
form {
    margin: 0;
    padding: 0;
}
    box-sizing: border-box; /* Para que el padding no afecte el ancho total */
}