* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121214;
    color: #e1e1e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #202024;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 350px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffb800; 
}

p {
    text-align: left;
    font-size: 14px;
    margin-bottom: 5px;
    color: #a8a8b3;
}

input {
    width: 100%;
    background-color: #121214;
    border: 1px solid #323238;
    color: #e1e1e6;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    outline: none;
}

input:focus {
    border-color: #ffb800;
}

button {
    width: 100%;
    background-color: #ffb800;
    color: #121214;
    border: none;
    padding: 14px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #e6a600;
}

.btn-secundario {
    background-color: #323238;
    color: #e1e1e6;
    margin-top: 10px;
}

.btn-secundario:hover {
    background-color: #4d4d57;
}

#resultado {
    margin-top: 25px;
    padding: 15px;
    background-color: #121214;
    border-radius: 5px;
    border-left: 4px solid #ffb800;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}