
p {
  color: red;
  position: absolute;
}  
   /* Field Set Styles */

fieldset {
  background-color: grey;
  border: 1px solid rbg(233, 69, 0);
  float: left;
  margin: 10px 0px 10px 2.5%;
  width: 46%;
  float: left;
}


legend {
  background-color: red;
  color: white;
  padding: 3px 0px;
  text-indent: 5px;
  width: 100%;
}

/* Label System */

label {
  clear: left;
  display: block;
  float: left;
  font-size: 0.9em;
  margin: 7px 4% 7px 5px;
  width: 40%
}

/* Input Control Styles */

input {
  display: block;
  float: left;
  font-size: 0.9em;
  margin: 7px 0px;
  width: 50%
}

input#state {
  width: 50px;
}

/* Selection List Styles */

select {
  display: block;
  float: left;
  font-size: 0.9em;
  margin: 7px 0px;
}

/* Option Button Styles */

fieldset.optionGroup {
  border-width: 0px;
}

fieldset.optionGroup label {
  display: inline;
  float: none;
  margin: 0px 3px 0px 0px;
  width: 30px;
}

fieldset.optionGroup input {
  display: inline;
  float: none;
  margin: 0px 20px 0px 0px;
  width: 20px;
}

/* Text Area Styles */

textarea {
  display: block;
  font-size: 0.9em;
  float: left;
  height: 150px;
  margin: 10px 0px;
  width: 50%;
}

/* Check Box Styles */

#share {
  color: rgb(0, 69, 233);
  float: none;
  margin: 10px auto;
  text-align: center;
  width: 90%;
}

#share input {
  display: inline;
  float: none;
  width: 20px;
}
  

/* Number Inbox Styles */
#pgame {
  width: 70px;
}

/* Button Styles */

form p {
  text-align: center;
}

input[type="submit"], input[type="reset"] {
  display: block;
  float: right;
  height: 40px;
  width: 200px;
}

/* Validation style */

input:focus, select:focus, textarea:focus {
  background-color: rbg(220, 255, 220);
}

input:focus:valid {
  background: rgb(220, 255, 220) url(go.png) bottom right no-repeat;

  -o-background-size-: contain;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}

input:focus:invalid {
  background: rgb(255, 232, 233) url(stop.png) bottom right no-repeat;

  -o-background-size-: contain;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}