
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400&display=swap');

html, body {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
}

body {
  color: #333;
  margin: 0;
  padding: 8px;
  box-sizing: border-box;

}

a {
  color: rgb(0,100,200);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0,80,160);
}

label {
  display: block;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0.7em;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;  
  border-radius: 4px;
  box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.15);
  font-family: 'Work sans';  
}

input, button, select {
  height: 2.5em !important;
}

input:disabled {
  color: #ccc;
}

input[type="range"] {
  height: 0;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}


.fields {
  display: flex;  
}


input, select, button {
  height: 37px !important;
  display: inline-block;
}

.fields {
  display: flex;
  flex-wrap: wrap;
}

.fields .field {
  margin-right: 1rem;
  flex: 1;
}

