/*
Login Box
*/
.loginBox {
  background-color: rgba(255,99,71,0.5);
  margin: auto;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 10px #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 500px;
  height: 550px;
}

#customBtn {
  display: inline-block;
  background: white;
  color: #444;
  width: 100px;
  border-radius: 5px;
  border: thin solid #888;
  box-shadow: 1px 1px 1px grey;
  white-space: nowrap;
}
#customBtn:hover {
  cursor: pointer;
}
span.label {
  font-family: serif;
  font-weight: normal;
}
span.icon {
  background: url('../img/gicon.svg') transparent 4px 50% no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 38px;
  height: 38px;
}
span.buttonText {
  display: inline-block;
  vertical-align: middle;
  padding-left: 8px;
  padding-right: 10px;
  font-size: 12px;
  font-weight: bold;
  /* Use the Roboto font that is loaded in the <head> */
  font-family: 'Roboto', sans-serif;
}
