
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
    background-color: #e7e7e7;
    padding-top: 100px;
}

header {
    display: flex;
    align-items: center;
}
header img {
    height: 36px;
    margin-right: 16px;
}
header h1 {
    font-size: 40px;
    font-weight: bold;
}
.container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

form input {
    background-color: #fff;
    font-size: 24px;
    font-weight: bold;
    border: none;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    padding: 8px;
}

form button {
    background-color: #009432;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 8px;
}
form {
    display: flex;
    max-width: 640px;
    width: 100%;
    justify-content: space-between;
}

table th {
    border-bottom: 2px solid black;
    padding: 16px;
    font-size: 24;
    font-weight: bold;

}
table {
    width: 100%;
}
table td {
    text-align: center;
    font-size: 18px;
    padding: 16px 0;
    border-bottom:  1px sold rgba(0, 0, 0, 0.5);
}
table td img {
    height: 30px;
}

.resultado {
    padding: 8px;
    font-weight: bold;
    color: #fff;
    background-color: #000;


}
.aprovado {
 background-color: #009432;
}
.reprovado {
  background-color: red;
}
