/* style.css */

/* Estilos generales de la página */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4faeb;
    /* Un verde muy suave y relajante */
    color: #2c5e1a;
    /* Verde oscuro para contraste */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #4a7a39;
}

/* Animación de carga (el círculo que gira) */
.loader {
    margin-top: 25px;
    border: 4px solid #d1e5c8;
    border-top: 4px solid #4ca12c;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estilo para el enlace de respaldo */
a {
    color: #4ca12c;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    font-size: 0.9rem;
}

a:hover {
    text-decoration: underline;
}