/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Fondo general */
body {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor */
.container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
    text-align: center;
}

/* Título */
.container h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

input:focus {
    border-color: #4facfe;
    outline: none;
}

/* Botón */
button {
    width: 100%;
    padding: 10px;
    background: #4facfe;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

button:hover {
    background: #00c6ff;
}

/* Dashboard */
.dashboard {
    text-align: center;
    color: white;
}

.dashboard a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 8px;
}



table {
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background: #4facfe;
    color: white;
}

td, th {
    padding: 10px;
    text-align: center;
}







.pregunta {
    animation: fade 0.5s;
}

@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}