/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/**
End of the Css Reset

*/

/* Header stuff*/
.flex-flow{
    width:100%;
    position: fixed;
    top:0;
    background-color: rgb(112, 128, 144);
}

.title {
    font-size: 32px;
    color: rgb(252, 241, 241);
    font-family:Helvetica, sans-serif;
    text-align: center;
    padding: 10px;
    text-shadow: 2px 2px #3d3d3d;
}

.subheading {
    font-size: 20px;
    color: rgb(248, 234, 234);
    font-family:Helvetica, sans-serif;
    text-align: center;
    padding: 5px;
    text-shadow: 2px 2px #242424;
}

/* Footer stuff*/
footer{
    position: absolute;
    bottom: 0;
    background-color: rgb(112, 128, 144);
    width: 100%;
    text-align: center;
    padding: 5px;
    color: rgb(252, 241, 241);
    text-shadow: 2px 2px #3d3d3d;
    box-sizing: border-box;
}

.small{
    font-size: 10px;
}

/* Main stuff */
body{
    background-color: rgb(187, 199, 211);
    font-family: Arial, Helvetica, sans-serif;
}

main{
    text-align: center;
}

.form{
    background-color: rgb(228, 238, 248);
    width: fit-content;
    border-radius: 50px;
    position: absolute;
    top: 20%;
    left:50%;
    transform: translateX(-50%);
}
.form > *{
    padding:20px;
}

h2{
    font-size: 20px;
}

.required{
    color: red;
}

.field{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 25px;
}

.strong{
    font-weight: bold;
    font-size: 24px;
}

input, select {
    width: 100px;
    box-sizing: border-box;
    background-color: rgb(112, 128, 144);
    color: rgb(248, 234, 234);
    text-shadow: 1px 1px #242424;
    border: 1px solid  white;
    border-radius: 5px;
    padding:5px;
}

label {
    width: 100px;
    box-sizing: border-box;
    text-align: left;
}

.angry{
    border-color: red;
}