.header {


    background-color: #5B2333;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    /* Centra verticalmente los elementos */
    justify-content: space-between;
    /* Separa izquierda y derecha */
    color: white;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.textos {
    display: flex;
    flex-direction: column;
    line-height: 1, 2;
    color: white;
}



.textos .hola {
    font-size: 1.2rem;
    font-weight: bold;
}

.textos .bienvenido {
    font-size: 0.9rem;
}

.right-section {
    display: flex;
    gap: 20px;

}

.right-section a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.right-section a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}


:root {
    --color-guinda: #6B2D3E;
    --color-guinda-dark: #5B2333;
    --color-guinda-light: #8B3D4E;
    --color-card-bg: #EAF0F6;
    --color-card-border: #D0D8E0;
    --color-body-bg: #F5F5F5;
    --color-footer-bg: #F0F0F0;
    --color-text-dark: #2D2D2D;
    --color-text-muted: #6C757D;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}



body {
    margin-bottom: 60px;
    background-color: var(--color-body-bg);
    color: var(--color-text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fondo general opcional para mejor presentación */

body {

    background: #f4f6f9;

    font-family: 'Roboto', sans-serif;

    margin: 0;

}
 
/* Contenedor del formulario */

.main-block {

    max-width: 1200px; /* antes 700px */

    margin: 60px auto;

    background: #ffffff;

    padding: 30px 40px;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

    border: 1px solid #e3e6ea;

}
 
/* Título */

.main-block h1 {

    text-align: center;

    font-weight: 600;

    color: #5B2333;

    margin-bottom: 25px;

}
 
/* Fieldset estilo limpio */

.main-block fieldset {

    border: none;

    margin-bottom: 20px;

}
 
/* Legend */

.main-block legend h3 {

    font-size: 18px;

    color: #5B2333;

    margin-bottom: 15px;

    border-bottom: 2px solid #5B2333;

    padding-bottom: 5px;

}
 
/* Inputs */

.main-block input {

    width: 100%;

    padding: 8px 10px;

    border-radius: 6px;

    border: 1px solid #5B2333;

    margin-top: 5px;

    margin-bottom: 12px;

    font-size: 14px;

}
 
/* Botón */

.main-block button {

    width: 100%;

    padding: 12px;

    background: #5B2333;

    border: none;

    border-radius: 8px;

    color: white;

    font-size: 16px;

    font-weight: 500;

    transition: 0.3s;

    cursor: pointer;

}
 
.main-block button:hover {

    background: #8B3D4E;

}
 



/* === FOOTER === */
.footer-institucional {
    background-color: var(--color-footer-bg);
    border-top: 1px solid #ddd;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

