body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding:0;
    background-color: #e9ebec;
    font-family: "Arial", sans-serif;
    text-align: center;
}

h1 {
    color: #ffd8db;
}

h2 {
    color: #3b0006;
}

input[type=text] {
    width: 80%;
    height: 100%;
    background-color: #e9ebec;
    border: none;
    text-align: center;
}

label {
    padding: 50%;
    margin: 50%;
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 25%;
    background-color:#89000d;
}

#mainBody {
    width: 90%;
    position: absolute;
    top: 25%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top:2.5%;
}

.message {
    padding: 10%;
}

#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15%;
    background-color: #3b0006;
    color: #ffd8db;
    text-align: right;
}

.footerLogo {
    width:20%;
    margin-right: 0%;
}

.return {
    background-color: #00c44f;
    border: none;
    color: white;
    padding: 5%;
    text-align: center;
    text-decoration: none;
    width: 100%;
    border-radius: 6px;
}

.dataCell {
    border: 1px solid black;
}

.release {
    background-color: #00c44f;
    margin-right: 4%;
}

.recall {
    background-color: #c4004f;
    margin-left: 4%;
    margin-right: 2%;
}

.actionButton {
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    width: 45%;
    border-radius: 6px;
    display: inline-block;
}

.mainBody {
    padding: 10%;
}

div.table {
    display:table;
    margin: auto;
    width: 100%;
    border-collapse: collapse;
}

form.tr, div.tr {
    display:table-row;
}

span.td {
    display:table-cell;
}