* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
header {
  background-color:#905c44;
  min-height:100px;
  padding: 10px;
  display: flex;
  justify-content:space-between;
  flex-wrap: wrap;;
  align-items: center;
}
header img {
  height: 100px;
}
body {
  margin: 0px;
  padding: 0px;
  background-color: #e7c5b5;
  height: 100%;
}
div.message-container {
  padding: 10px;
  font-size: 1rem;
}
div.message-container p.error{
  margin: 0rem;
  color:red;
  font-weight: bold;
}
/*
div.message-container p.message{
  margin: 0rem;
  font-weight: bold;
}
*/

div.input-container {
  max-width: 400px;
  margin-top: 10px;
  display: grid;
  align-items:top;
  grid-gap: 10px;
  grid-template-columns:2fr 5fr;
  min-width: 300px;
  padding: 0px 10px;
  
}
div.input-container label{
  grid-column-start: 1;
}
div.input-container input{
  grid-column-start: 2;
  padding: 3px;
  height: 1.5rem;
  font-size: 1rem;
}
div.input-container input.error{
  background-color:rgb(250, 188, 188);
}
div.input-container textarea{
  grid-column-start: 2;
  padding: 3px;
  font-size: 1rem;
}

div.button-container{
  padding: 10px;
}

button {
  padding: 0.5rem 1.5rem;
  border: 2px solid black;
  border-radius: 10px;
  outline:none; /* get rid of the ugly border after clicking the button */
  background-color: #482F23;
  color:white;
  font-size: 1.5rem;
  transition: background-color 0.5s;
  cursor: pointer;
}
button:hover {
  background-color: #905c44;
}
button:active {
  color:black;
}

/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
#map {   
  height:400px;
  border:2px solid black;
  margin: 10px;
}
/*    
.custom-map-control-button {
  appearance: button;
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 10px;
  padding: 0 0.5em;
  height: 40px;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
}
.custom-map-control-button:hover {
background: #ebebeb;
}
*/