html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

header {
    background-color: #ec6b24;
    padding: 10px;
    text-align: center;
}
header img {
    height: 80px;
}
footer {
    background-color: #002e5a;
    color: white;
    padding: 20px;
    text-align: center;
}

.centrado {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;              /* separación entre texto y botón */
    margin-top: 40px;       /* espacio desde arriba */
}

/* Estilo del botón */
.btn-acceso {
    background-color: #ec6b24;        /* COLOR NORMAL */
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

/* Color al posicionarse encima */
.btn-acceso:hover {
    background-color: #c4581e;        /* COLOR DARKER EN HOVER */
    transform: scale(1.03);           /* efecto pequeño de agrandar */
}
