body {
    background: #fafafa;
    color: #333;
    font-family: Georgia, "Times New Roman", serif;
    padding: 40px 20px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 2px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    text-align: center;
}

fieldset {
    width: 300px;
    margin: auto;
    border: 1px solid black;
    padding: 20px;
    border-radius: 10px;
}

.elementos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.elementos input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.elementos input:focus {
    border-color: #999;
    outline: none;
}

input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background: #0056b3;
    border-color: #0056b3;
}

button {
    padding: 8px 16px;
    background: #28a745;
    color: #fff;
    border: 1px solid #28a745;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 5px;
}

button:hover {
    background: #218838;
    border-color: #218838;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #222222;
    text-align: center;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #222222;
    text-align: center;
}

table th {
    background-color: bisque;
    font-weight: bold;
    text-align: center;
}