

* {
  box-sizing:border-box;
}
body {
  background: #F4F4F4;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open sans, Helvetica Neue, sans-serif;
  color: #4D4D4D;
}

  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 0 32px rgba(0,0,0,0.02);
}

label.error {
  display: block;
  font-size: 12px;
  color: #FF5D4D;
  margin-top: .25rem;
}

form > div {
  margin-bottom: .5rem;
}

input,button {
  margin:0;
  padding: 1rem;
  font-size: 100%;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.02);
}

label {
  display:block;
  overflow:hidden;
  margin-bottom: 4px;
}

.field {
  margin-bottom: 24px;
  clear: both;
}

.field input[type=checkbox] {
  float: left;
  margin-right: 8px;
}

input[type=text] {
  width: 100%;
}

input:focus {
  outline: 0;
  border-color: #1CC691;
}

button {
  background: #1CC691;
  color: #FFF;
  cursor: pointer;
}

.text-right {
  text-align: right;
}

