* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: rgba(0, 0, 0, 0.1);
    padding-top: 100px;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

header img {
    height: 50px;
    margin-right: 16px;
}

.container {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
}

form {
    display: flex;
    max-width: 640px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 50px;
}

form input {
    padding: 8px;
    border: none;
    font-size: 24px;
    border-bottom: 2px solid #000;
}

form button {
    padding: 8px;
    border: 0;
    background-color: rgb(0, 151, 0);
    color: white;
    font-size: 24px;
    cursor: pointer;
}

table {
    width: 100%;
    text-align: center;
}

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

table td {
    font-size: 18px;
    padding: 16px 0px;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

td img {
    height: 32px;
}


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

.aprovado {
    background-color: rgb(0, 137, 0);
}

.reprovado {
    background-color: rgb(207, 0, 0);
}







