body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff0080;
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

div {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

label, select, input {
    display: block;
    margin: 10px auto;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

select, input { 
    border: 2px solid rgb(120, 120, 120) !important;
}

button {
    background-color: #e10202;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    transform: scale(1.1);
}

#resultado {
    margin-top: 20px;
    font-size: 1.0rem;
    box-shadow: none
}