/* RESET */

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: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

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;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 1.6;
    font-family: 'Source Sans Pro';
    background-color: rgb(245, 245, 245);
}

h1 {
    font-size: 2rem;
    padding: 5px 1px;
    background-color: rgba(0, 128, 0, 0.3);

    margin-bottom: 20px;
    text-align: center;
}

a {
    text-decoration: underline;
    color: inherit;
}

.container {
	margin: 80px auto;
	width: 99%;
	max-width: 900px;
}

.registration {
	background-color: #fff;
	max-width: 700px;
	margin: 0 auto;
	padding-bottom: 20px;
	box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.3);
	border-bottom: 5px solid #ffdb3a;
}

.input-requirements {
  font-size: 1.5rem;
  font-style: italic;
  text-align: left;
  list-style: circle;
  list-style-position: inside;
  max-width: 500px;
  margin: 0 0 0 120px;
  color: rgb(150,150,150);
}

.input-requirements li.invalid {
	color: #e74c3c;
}

.input-requirements li.valid {
	color: #2ecc71;
}

.input-requirements li.valid:after {
	display: inline-block;
	padding-left: 10px;
	content: "\2713";
}

meter {
  /* Reset the default appearance */
  /*-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;*/

  margin: 0 auto 1em;
  width: 55%;
  height: 1.1em;
  /* Applicable only to Firefox */
  background: none;
  background-color: rgba(0, 0, 0, 0.1);
}

meter::-webkit-meter-bar {
  background: none;
  background-color: rgba(0, 0, 0, 0.1);
}
/* Webkit based browsers*/
meter[value="1"]::-webkit-meter-optimum-value { background: red; }
meter[value="2"]::-webkit-meter-optimum-value { background: orange; }
meter[value="3"]::-webkit-meter-optimum-value { background: yellow; }
meter[value="4"]::-webkit-meter-optimum-value { background: green; }

/* Gecko based browsers */
meter[value="1"]::-moz-meter-bar { background: red; }
meter[value="2"]::-moz-meter-bar { background: orange; }
meter[value="3"]::-moz-meter-bar { background: yellow; }
meter[value="4"]::-moz-meter-bar { background: green; }

.feedback {
	color: #9ab;
	font-size: 90%;
	padding: 0 .25em;
	font-family: Arial;
	margin-top: 1em;
}
.green{
  background-color: rgba(0, 128, 0, 0.3);
}

#msg_yes { width:800px;margin: 0 auto; text-align: center; color: green; background: #D4EAD4; border: 3px solid green; border-radius: 3px; margin: 2px; }
#msg_no { width:800px;margin: 0 auto; text-align: center; color: red; background: #FFF0F0; border: 3px solid red; border-radius: 3px; margin: 2px; }