/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #000; /* Fondo negro */
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    z-index: 10; /* Asegura que esté por encima de la animación */
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00C6FF;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 1rem;
    font-weight: bold;
    color: #00C6FF;
}

input[type="date"] {
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: #1E1E1E;
    color: white;
    box-shadow: inset 0 0 5px rgba(0, 255, 255, 0.3);
}

button {
    font-size: 1rem;
    padding: 10px 20px;
    background: linear-gradient(90deg, #00C6FF, #0072FF);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    font-weight: bold;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

#result {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #FFFFFF;
}

/* Fondo animado */
canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

