table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid rgb(114, 74, 0);
}
th, td {
    border: 1px solid rgb(114, 74, 0);
    padding: 8px;
    text-align: left;
}
th {
    background-color: rgb(114, 74, 0);
    color: white;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
tr:nth-child(odd) {
    background-color: #ffc04d; /* laranja mais claro */
}
@media screen and (max-width: 600px) {
    table {
        border: 0;
        border: 2px solid rgb(114, 74, 0);
    }
    th, td {
        border: 0;
        display: block;
        padding: 8px;
    }
    th {
        background-color: orange;
        color: white;
    }
    tr {
        border: 2px solid rgb(114, 74, 0);
    }
}

.form {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.form-inpt {
    width: calc(50% - 5px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid orange;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #ffffff50;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
}

.form-inpt:focus {
    outline: none;
    border-color: #ff9f19; /* laranja mais escuro */
}

.form-inpt::placeholder {
    color: #81500d; /* laranja mais escuro */
}