body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #3b5f8f, #5a7fb5); /* Colores más suaves */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 450px;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

h1 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 28px;
}

form {
    width: 100%;
}

input, button {
    width: calc(100% - 20px);
    margin: 12px 0;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

input {
    background: rgba(255, 255, 255, 0.85);
    color: black;
    outline: none;
}

button {
    background-color: #ff9800;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background-color: #e68900;
}

#resultado {
    margin-top: 40px;
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: 90%;
}

#resultado h2 {
    text-align: center;
}

.oculto {
    display: none;
}
