body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h1 {
    color: #bb86fc;
}

label {
    color: #ffffff;
}

input[type="text"] {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #bb86fc;
    padding: 10px;
    border-radius: 5px;
    width: 300px;
    margin-bottom: 10px;
}

button {
    background-color: #bb86fc;
    color: #121212;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #3700b3;
}

p#resultado {
    color: #03dac6;
    font-weight: bold;
    margin-top: 10px;
    word-wrap: break-word;
    max-width: 100%;
}