
.theme-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 20px;
    height: 100px;
}

.theme-footer {
    background-color: #ededed;
    color: #000;
    margin-top: 10px;
    padding: 15px 0;
    border-top: solid 10px;
    border-color: #2f5743;
}

    .theme-footer .footer-organizacion strong {
        color: #2f5743;
    }

    .theme-footer a {
        color: #2f5743;
        outline: none;
        text-decoration: none;
    }

    .theme-footer a:hover {
        outline: none;
        text-decoration: underline;
    }

.login-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3.7vw;
    flex: 1;
}

.layout-general {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
 
.layout-general main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    padding-bottom: 20px;  
}


.titulo-pagina-contenedor {
    background: #2f5743;
    color: white;
    padding: 20px 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

    .titulo-pagina-contenedor h2 {
        margin: 0;
        font-weight: bold;
        color: white;
    }

    .titulo-pagina-contenedor .icono {
        margin-right: 10px;
        color: white;
    }

    .titulo-pagina-contenedor a {
        color: white;
        text-decoration: underline;
    }

        .titulo-pagina-contenedor a:hover {
            color: #2f5743;
            text-decoration: none;
            background-color: white;
        }

    .titulo-pagina-contenedor p {
        margin: 0;
        font-size: 14px;
        color: white;
    }

    .titulo-pagina-contenedor .mensaje {
        margin-top: 10px;
        max-width: 900px;
        
        background-color: gainsboro;
        border: none;
        color: white;
    }

.layout-general {
    background: gainsboro;
}

.button-primary {
    background-color: #2f5743;
    border-color: #2f5743;
    color: white;
}

.button-primary:hover {
    background-color: #1e3a2d;
    border-color: #1e3a2d;
    color: white;
}