body{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 150%;
  margin: 0px;
  padding: 10px;
  box-sizing: border-box;
  top: 0px;
  text-align: left;
  height: 100%;
  color: rgb(20%, 20%, 20%);
}

html{
  text-align:center;
  height: 100%;
}

h1{
  font-size: 30px;
  margin: 20px 0;
}

h2{
  font-size: 20px;
  margin: 0 0 20px 0;
}

hr{
  border: none;
  height: 1px;
  margin: 20px 0;
  background-color: rgb(80%, 80%, 80%);
}

/*-------------------*/

#content{
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

.status{
  padding: 8px 10px;
  width: 100%;
  border-radius: 3px;
  color: white;
  box-sizing: border-box;
}

.status.positive{
  background-color: #008e00;
}

.status.negative{
  background-color: #c71517;
}

/*-----------------------*/

form{
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #0060AE;
}

input, button{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  width: 120px;
  text-align: center;
  border-radius: 3px;
  padding: 8px 10px;
  box-sizing: border-box;
}

input{
  border: 1px solid rgb(40%, 40%, 40%);
}

input[type="text"]{
  margin-top: 10px;
}

label{
  display: block;
}

label:first-of-type{
  margin-top: -5px;
}

button{
  background-color: #0060AE;
  color: white;
  border: none;
  transition: opacity 1s;
}

button:hover{
  opacity: 0.8;
}

form p{
  margin: 25px 0 15px 0;
  text-align: left;
}

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  margin: 15px auto;
  width: 50px;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark, .checkmark_r {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  height: 35px;
  width: 35px;
  border: 1px solid rgb(80%, 80%, 80%);
  border-radius: 50%;
  background-color: white;
}

.desc{
  display: inline-block;
  height: 37px;
  line-height: 37px;
  margin-left: 15px;
  vertical-align: middle;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after, .container input:checked ~ .checkmark, .container input:checked ~ .checkmark_r {
  border-color: #0060AE;
}

/* Style the checkmark/indicator */
.container .checkmark:after, .container .checkmark_r:after {
  content: "";
  position: absolute;
  transition: 0.4s;
  display: block;
  left: 12px;
  top: 5px;
  width: 8px;
  height: 16px;
  border: solid rgb(80%, 80%, 80%);
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container input:checked ~ .checkmark_r:after {
  background-color: #0060AE;
}

.container .checkmark_r:after{
  left: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background-color: rgb(80%, 80%, 80%);
}