
body {

  font-family: "Arial";
  font-size: 14px;
  padding: 0px;
  margin: 0px;
}

div {
  box-sizing: border-box;

}

a {
  text-decoration: none;
}


.fullBox {
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}

.halfBox {
  display: inline-block;
  width: 46%;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}

.halfhalfBox {
  display: inline-block;
  width: 46%;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}

.inputField input {
  height:30px;
  padding:5px;
  width: 100%;
  border:1px solid gray;
  margin:5px;
  background-color: rgba(0,0,0,0);
  font-size:16px;
  color:#333333;

}

.btn {
  width:auto;
  height: 30px;
  max-width: 350px;
  padding:5px;
  text-align:center;
  margin:5px;
  color:white;
  font-weight:bold;
  border-radius: 5px;
  border:1px solid gray;
  background-color: #d35400;
  cursor:pointer;
}

.btn:hover {
  background-color: #c0392b;

}

.overlayBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  padding: 30px;
  border: 1px solid gray;

  -webkit-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 21px 0px rgba(0,0,0,0.75);

  display: none;

  background-color: white;
  z-index: 150;
}

.overlayBox button {
  height: 32px;
  cursor: pointer;
  margin-left: 15px;
}

.popup {

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  max-width: 600px;
  overflow: auto;
  border: 2px solid gray;
  border-radius: 7px;
  padding: 20px;
  background-color: white;
  height: 510px;
  z-index: 200;
  -webkit-box-shadow: 10px -1px 26px -16px rgba(0,0,0,0.75);
-moz-box-shadow: 10px -1px 26px -16px rgba(0,0,0,0.75);
box-shadow: 10px -1px 26px -16px rgba(0,0,0,0.75);
}

.inline {
  display: inline-table;
}

.message {
  width: 98%;
  height: 150px;
}

.hidden
{
  display: none;
}

@media screen and (max-width: 600px) {
  .halfBox {
    display: inline-block;
    width: 100%;
    text-align: left;
    vertical-align: top;
    box-sizing: border-box;
  }


}
