body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Slab", serif;
  font-size 14px;
  color: #4C4C4C;
}

h1 {
 color: #000000;
 font-size: 24px;
 margin: 0;
 padding: 0;
}

p {
  font-size: 14px;
  line-height: 1.5em;
}

p.done {
  color: #4FBF5B;
  font-weight: 700;
  display: block;
  margin-top: 15px;
}

#logo {
  width: 160px;
  margin: 5px;
}


#wrapper {
  max-width: 530px;
  margin: auto;
  position: relative;
  padding: 15px;
}


form {
  margin-top: 30px;

}

form div {
  display: block;
  margin: 15px 0;

}

form div span.email {
  color: #fff;
  padding: 3px 7px;
  font-size: 10px;
  display: inline-block;
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: #2AA58D;
}

form div span.sms {
  color: #fff;
  padding: 3px 7px;
  font-size: 10px;
  display: inline-block;
  margin-left: 5px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  background: #FAA61A;
}

.container {
      display: block;
      position: relative;
      padding-left: 32px;
      margin-bottom: 12px;
      cursor: pointer;
      font-size: 14px;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 2px solid #979797;
}

.container input:checked ~ .checkmark {
    background-color: #fff;
  }

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

.container input:checked ~ .checkmark:after {
    display: block;
  }

.container .checkmark:after {
    left: 7px;
    top: -4px;
    width: 7px;
    height: 15px;
    border: solid #FFDE02;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

span.checkmark.disable {
  background: #D8D8D8!important;

}

button {
  background: #FFDE02;
  border: 0;
  margin: 20px 0 0 0;
  font-size: 20px;
  padding: 15px 30px;
  font-weight: 700;
  box-shadow: 2px 2px 0 0 #d8d8d8;
  font-family: Roboto Slab, serif;
  color: #000000;
  cursor: pointer;
}

button:hover {
  background: #F6D600;
  border: 0;
  margin: 21px 0px 0px 1px;
  font-size: 20px;
  padding: 15px 30px;
  font-weight: 700;
  box-shadow: none;

}