* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.wrapper {
    display: grid;
    padding: 20px;
    gap: 1em;
    background-color: aliceblue;
}
.centrado {
    place-items: center;
}

.header {
    display: grid;
    text-align: center;
    width: 100%;
}

.content {
    display: grid;
    width: 100%;
    gap: 1em;
}

.form-grid {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 1em;
    width: 80%;
}

.ancho {
    grid-column: 1/-1;
}
.oculto {
    width: 0px;
    height: 0px;
}
label {
    font-style: italic;
}
input {
    width: 100%;
    border-radius: 2px;
}

.boton {
    font-weight: 600;
    font-size: large;
    border-radius: 4px;
    background-color: cornflowerblue;
}
h1 {
    font-weight: bold;
    color: rgb(46, 46, 46);
}
table {
    border-collapse: collapse;
    width: 100%;
}
th {
    border: solid 2px rgb(38, 59, 59);
    padding: 0.4em;
    background-color: cadetblue;
    text-align: center;
}
td {
    border: solid 2px rgb(38, 59, 59);
    padding: 0.4em;
    text-align: center;
}
tr:nth-child(odd) {
    background-color: rgb(208, 239, 243);
}