@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

input[type=text],
select {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=date],
select {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=number],
select {
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


input[type=submit]:hover {
  background-color: #45a049;
}

header {
  position: sticky;
  top: 0;
  background-color: rgb(104, 181, 201);
  margin: 0 0 0 0;
  min-height: 8em;
  padding: 0;
  width: 100%;
  color: rgb(255, 255, 255);
  z-index: 6;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.541);
}


h1 {
  display: block;
  font-size: 3em;
  margin: 0;
  font-weight: normal;
  letter-spacing: .1em;
}

.logo {
  padding-top: .5em;
  float: left;
  z-index: 2;
}

.logo img {
  height: 113px;
  width: 200px;
}

.headerTitle {
  text-align: center;
  height: 1px;
  padding-top: 4em;
  margin: auto;
  width: 50%;
  font-size: .7em;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: rgb(226, 226, 226);
}

#mainForm {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  max-width: fit-content;
  margin: 1em auto;
  padding: 1em 2em 1em 2rem;
}

.checkArea {
  padding: .5em;
  border: #d4d4d4;
  border-style: none;
  border-radius: 1em;
  border-width: 1px;
  margin: .5em;
  box-shadow: 1px 1px 3px #8f8f8f;
  user-select: none;
  transition: .3s;
}

.checkArea:hover {
  background-color: #c5d6e6;
  box-shadow: 2px 2px 10px #8f8f8f;
  transition: .3s;
}

.addShadow {
  box-shadow: 1px 1px 3px #8f8f8f;
}

.signatureBox, .signatureBox:focus {
  font-family: 'Dancing Script', cursive;
  font-size: 25px;
  letter-spacing: .1em;
  border: none !important;
  border-bottom-style: dotted !important;
  border-bottom-width: 3px !important;
  outline: none;
  padding-bottom: 0 !important;
}

h2 {
  max-width: fit-content;
  margin-top: 1em;
  padding: 1em;
  border-radius: .5em;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  background-color: rgb(146, 199, 209);
}

div.diffAdd {
  margin: 1em;
  padding: 0em 0 2em 2em;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

div.contactDiv {
  display: flex;
  border-bottom: 1px solid #918e8ea9;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

div.column {
  flex: 50%;
}

.error {
  color: red;
}

.column1,
.column2,
.column3 {
  flex: 33.33%;
}

footer {
  color: gray;
  margin: auto;
  width: max-content;
}

select {
  background-color: white;
}

#confDiv {
  margin: auto;
  max-width: max-content;
  text-align: center;
  background-color: white;
  margin-top: 1em;
  padding: 1em;
  border-radius: .5em;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#confDiv form input {
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.4);
  border-radius: 1em;
}

.char-counter {
  color: #8f8f8f;
}