/* ----------------------------------- */
/* 1. RESET Y CONFIGURACIÓN BASE       */
/* ----------------------------------- */
* {
    /* Reseteo básico para un diseño limpio */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Fuente legible y color de fondo general */
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9; /* Un color suave */
    color: #333;
    /* Altura mínima para centrar el contenido verticalmente */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----------------------------------- */
/* 2. CONTENEDOR PRINCIPAL Y CENTRADO  */
/* ----------------------------------- */
.container {
    /* Limita el ancho del contenido y añade relleno */
    width: 90%;
    max-width: 600px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centra todo el texto interior */
}

/* ----------------------------------- */
/* 3. IMAGEN / MARCADOR CENTRAL        */
/* ----------------------------------- */
.image-placeholder {
    /* Estilo para el marcador/ícono central 🚧 */
    font-size: 80px; /* Tamaño grande para el ícono/emoji */
    margin-bottom: 20px;
    display: block; /* Asegura que ocupe su propio espacio */
}

/* Si quieres usar una imagen real, usa:
.image-placeholder img {
    width: 150px; 
    height: auto;
    border-radius: 50%;
}
*/

/* ----------------------------------- */
/* 4. TEXTOS Y TIPOGRAFÍA              */
/* ----------------------------------- */
.title {
    /* Estilo del título principal "Sitio en Construcción" */
    font-size: 2.2em;
    color: #007bff; /* Color primario */
    margin-bottom: 15px;
}

.message {
    /* Estilo del párrafo de mensaje */
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #555;
}

.small-text {
    /* Texto de aclaración pequeño */
    font-size: 0.8em;
    color: #aaa;
    margin-top: 20px;
}

/* ----------------------------------- */
/* 5. ENLACES / BOTONES                */
/* ----------------------------------- */
.links-container {
    /* Contenedor para los enlaces */
    display: flex;
    flex-direction: column; /* Apilados por defecto para móviles */
    gap: 15px; /* Espacio entre los botones */
    margin-bottom: 20px;
}

.link-button {
    /* Estilo base de los botones/enlaces */
    text-decoration: none; /* Quitar subrayado */
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: block; /* Ocupa todo el ancho disponible */
}

/* Estilo específico para el botón de Registro */
.register {
    background-color: #28a745; /* Verde */
    color: white;
}

/* Estilo específico para el botón de Acceso */
.login {
    background-color: #007bff; /* Azul */
    color: white;
}

/* Efecto hover/activo para los botones */
.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.register:hover {
    background-color: #218838;
}

.login:hover {
    background-color: #0056b3;
}

/* ----------------------------------- */
/* 6. RESPONSIVE (Manejo de Escritorio)*/
/* ----------------------------------- */
@media (min-width: 600px) {
    /* Si la pantalla es mayor a 600px, coloca los botones lado a lado */
    .links-container {
        flex-direction: row;
        justify-content: center;
    }

    /* Asegura que los botones tengan un ancho flexible y no sean demasiado grandes */
    .link-button {
        width: 48%; /* Ocupa casi la mitad del espacio */
        max-width: 250px;
    }
}