@charset "UTF-8";
/* CSS Document */
* { box-sizing: border-box; }

/*text formatting*/
body {
 font-family: serif;
 font-size: 16px;
 color: gold;
 }

/*FORM RULES*/
form fieldset {
  width: 500px;
  height: 400px;
  color: white;
  margin-left: 400px;
  margin-top: 100px;
  background-color: rgba(0,0,0,0.2);
  border: gold 5px;
}
form legend {
  padding-top: 50px;
  font-weight: bold;
}
form label {
  display: inline-block;
  line-height: 1.8;
  vertical-align: top;
}
form fieldset ol {
  margin: 0;
  padding: 10;
}
form fieldset li {
  list-style: none;
  padding: 10px;
  margin: 0;
}
form em {
  font-weight: bold;
  font-style: normal;
  color: #f00;
}
form label {
  width: 400px; /* Width of labels */
}

input {
  width: 400px;
}

a {
  text-decoration: none;
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 10px;
  padding: 8px 16px;
}

a:hover {
  background-color: red;
  color: white;
}

.previous {
  background-color: #f1f1f1;
  color: black;
}

.next {
  background-color: #4CAF50;
  color: white;
  margin-bottom: 125px;
}

.round {
  border-radius: 50%;
}

form p {
  position: absolute;
  background-color: #4CAF50;
  color: white;
  margin-bottom: 125px;
}
