html, body, input, button {
  font-family: 'Courier New', monospace;
  font-size: 1.1em;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

p, h1, h2 {
  margin-top: 0;
}

h2 {
  font-size: 1.4rem;
}
.left h3:first-child {
  margin-top: 0;
}

a {
  color: #000;
}

table, tr, th, td {
  border-collapse: collapse;
  border: 1px solid #000;
}

th, td {
  padding: 10px;
  text-align: left;
  font-size: 0.8rem;
}

th {
  background-color: #000;
  color: #fff;
}

.footer a {
  font-size: 0.8rem;
}

.small-info {
  font-size: 0.7em;
  font-weight: normal;
}

.legal-text {
  font-size: 0.7rem;
  max-width: 100vh;
}

.logo-box {
  float: left;
}

.menu {
  text-align: right;
  font-size: small;
}

.flash-error, .flash-notice {
  border: 2px solid #000;
  margin-left: auto;
  margin-right: auto;
  width: 60vh;
  font-size: 0.9rem;
  padding: 10px;
  margin-top: 12px;
  text-align: left;
  line-height: 20px;
  text-indent: 5px;
}

.flash-error img, .flash-notice img {
  width: 20px;
  float: left;
}

.flash-error {
  background-color: crimson;
}

.flash-notice {
  background-color: rgb(15, 225, 155);
}

.grid-container {
  display: grid;
  grid-template-rows: 150px;
  grid-template-columns: minmax(150px, 300px) minmax(60%, auto) minmax(150px, 300px);
  grid-template-areas: none;
  grid-template-rows: 15% 65% 20%;
  /* grid-template-rows: 2fr repeat(2, 1fr) 2fr; */
  height: 100vh;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px;
  text-align: left;
}

.grid-container .header {
  border-bottom: 2px solid #ddd;
}

.grid-container .footer {
  border-top: 2px solid #ddd;
}
.grid-container .header, .grid-container .footer {
  grid-column: 1 / span 3;
  background-color: #2E8B57;
}


.grid-container .left, .grid-container .right {
  background-color: #2E8B57;
}

.grid-container .middle {
  background-color: #3CB371;
  overflow: scroll;
}

.grid-footer {
  grid-column: 1 / span 3;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.input-box {
  display: flex;
  align-items: center;
  max-width: 300px;
  background: #fff;
  border: 1px solid #a0a0a0;
  border-radius: 4px;
  padding-left: 0.5rem;
  overflow: hidden;
  font-family: sans-serif;
  margin-bottom: 20px;
}

.input-box .prefix {
  font-weight: 300;
  font-size: 14px;
  color: #999;
}

.input-box input {
  flex-grow: 1;
  font-size: 14px;
  background: #fff;
  border: none;
  outline: none;
  padding: 0.5rem;
}

.input-box:focus-within {
  border-color: #999;
}

button.input-box {
  font-weight: bold;
  padding: 0.5rem;
  font-size: initial;
}

button.input-box:hover {
  background-color: #ddd;
}

div.list span.label {
  display: inline-block;
  font-weight: bold;
  width: 190px;
  line-height: 30px;
}

div.list img.copy {
  height: 22px;
  width: 22px;
  cursor: pointer;
}

.logo {
  height: 72px;
  margin-left: -7px;
}

