:root {
--color-text: #333333;
--color-text-highlight: #5a5a5a;
--color-text-logo: #838ea8;
}
/* Layout */
html,
body {
margin: 0;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
width: 100%;
height: 100%;
}
html {
background-color: #e9edf1;
font-size: 16px;
}
body {
max-width: 900px;
margin: 0 auto;
position: relative;
overflow: hidden;
}
#header {
background-color: #4e6d8a;
color: white;
overflow: hidden;
text-align: center;
width: 100%;
font-size: 32px;
font-weight: bold;
line-height: 60px;
}
#footer {
position: absolute;
bottom: 0;
background-color: #8fa5b9;
text-align: right;
font-size: 16px;
font-weight: bold;
width: 100%;
line-height: 24px;
color: white;
}
#content {
background-color: white;
width: 100%;
height: 100%;
margin-bottom: 84px;
border-bottom: 1px sold tomato;
}
a,
a:visited {
color: var(--color-text);
}
a:hover {
color: var(--color-text-highlight);
}
/* Forms */
.form-body-table {
padding: 0.5rem;
margin: 0 auto;
background-color: white;
background-image: linear-gradient(#e6eff7, white);
background-repeat: no-repeat;
background-size: 100% 1rem;
border-radius: 0.5rem;
box-shadow: 0 0 0.5rem #0000006c;
}
.form-body-buttons {
text-align: right;
}
/* Sections */
div.section {
padding: 4px 32px;
}
div.section>h2 {
text-align: center;
text-decoration: underline;
padding-top: 16px;
padding-bottom: 5px;
font-size: 24px;
margin: 0;
}
div.section>div {
margin: 0 auto;
}
table.form {
margin: 0 auto;
border-collapse: collapse;
}
table.form td {
padding: 2px 5px;
border-bottom: 1px solid #f5f5f5;
font-size: 16px;
}