* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #22b78a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: rgb(199, 11, 237);
}

.container {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.left, .right {
    background-color: rgb(246, 216, 174);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 45%;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

label {
    display: block;
    margin: 5px 0;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #e13ec3;
    color: rgb(247, 243, 246);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #22b78a;
}

.resultado {
    margin-top: 20px;
    background-color: #d6faf3;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

p {
    margin: 5px 0;
    font-size: 16px;
}

strong {
    font-weight: bold;
}