div.modal {
  position: fixed;
  z-index: 1;
  display: none;
}

div.modal div.underlay {
  position: fixed;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
}

div.modal div.background {
  position: fixed;
  z-index: 2;
  top: 14vh;
  left: 14vw;
  height: 70vh;
  width: 70vw;
  background: #ddd;
  border-radius: 0.2rem;
  padding: 2vh 2vw;
}

/*******************************************************************************
* Start: `form'
*******************************************************************************/

div.form {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  border: 1px solid transparent;
}

div.form div.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid transparent;
}

div.form div.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.75rem;
  font-family: Oswald;
}

div.form div.message {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.25rem;
}

div.form div.fields {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  border-radius: 1rem;
  padding: 0.5rem;
}

div.form div.field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10vh;
  width: 100%;
  margin: 0 7px;
  border: 1px solid #bbb;
}

div.form div.field label {
  display: flex;
  justify-content: center;
  align-items: center;
  #height: 100%;
  width: 100%;
  #margin: 1vh;
}

div.form div.field div.data {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5vh;
  width: 100%;
  background: linear-gradient(#bbb, #ddd);
  #border: 1px solid #888;
  color: #000;
  font-size: 1.2rem;
  #padding: 0.2rem 1rem;;
  outline: none;
  overflow: auto;
  word-wrap: break-word;
  word-break: break-all;
  font-family: Roboto;
  font-weight: 300;
}

div.form div.create {
  height: 5vh;
  width: 50%;
  outline: none;
  width: auto;
  padding: 0 2rem;
}

div.form div.response {
  display: none;
  justify-content: center;
  align-items: center;
  height: 5vh;
  width: 100%;
  font-size: 1.2rem;
}

div.form div.close {
  display: none;
  justify-content: center;
  align-items: center;
  height: 5vh;
  width: auto;
  padding: 0 2rem;
}

div.error {
  color: #822;
}

/*******************************************************************************
* End: `form'
*******************************************************************************/
