
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    background: linear-gradient(-45deg, #4e54c8, #8f94fb, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 400px;
    text-align: center;
    color: white;
}

h2 {
    margin-top: 0;
    font-size: 24px;
}

p {
    font-size: 14px;
    color: #ccc;
}

input {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
}

button {
    width: 85%;
    padding: 12px;
    background: linear-gradient(90deg, #4caf50, #45a049);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(90deg, #45a049, #4caf50);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 239, 72, 0.6);
}

#resultado {
    margin-top: 20px;
    font-size: 18px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}


