/* =========================================
   1. CONFIGURACIÓN GENERAL
   ========================================= */
body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f4f4f4; /* Tu color de fondo gris */
    margin: 0;
    padding: 0;
    padding-top: 85px; 
    padding-bottom: 80px; 
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   2. CABEZAL (HEADER)
   ========================================= */
.custom-header {
    background-color: #008F39;
    height: 65px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-logo {
    display: block;
    width: 450px;
    height: 65px;
    background-image: url('/pix/logos/logo.sala10-01.svg');
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: 450px auto;
    text-indent: -9999px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .header-logo { width: 100%; background-size: contain; }
}

/* =========================================
   3. FOOTER
   ========================================= */
.custom-footer-container {
    background-color: #008F39;
    color: white;
    padding: 15px 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.custom-footer-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* =========================================
   4. CONTENIDO CENTRAL (Cuadro Blanco)
   ========================================= */
.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.content {
    background-color: #fff;
    /* AJUSTE DE CENTRADO: Más aire arriba y abajo (50px) para centrar visualmente los botones */
    padding: 50px 40px; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin-top: 20px;
}

/* =========================================
   5. BOTONES E INPUTS
   ========================================= */
a { text-decoration: none; }

.boton {
    background-color: #008F39;
    color: white;
    padding: 15px;
    /* Margen simétrico arriba y abajo para separar los botones entre sí */
    margin: 10px 0; 
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    z-index: 10;
    display: block;
}

.boton:hover { background-color: #006b2b; }

/* Negritas dentro del botón */
.boton b { font-weight: bold; }

/* Botón del Formulario manual (login-manual.html) */
.form-button {
    width: 100%;
    padding: 12px;
    background-color: #008F39;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    z-index: 100;
}
.form-button:hover { background-color: #006b2b; }

.form-element-wrapper { margin-bottom: 15px; text-align: left; }
.form-element-wrapper label { display: block; margin-bottom: 5px; font-weight: bold; color: #333; }
.form-field { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.list-help-item { font-size: 0.9em; margin-top: 10px; }
.list-help-item a { color: #008F39; }

