body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #102C57;
}

td {
  padding: 20px;
}

.logoutbutton {
 /*style="display: block;position:fixed;bottom:20px;right:20px;width:20%;" 	*/
  display: block;
  position: fixed;
  top: 35px;
  right: 5%;
  width: min(10%,50px);
}

.backbutton {
 /*style="display: block;position:fixed;bottom:20px;right:20px;width:20%;" 	*/
  display: block;
  position: fixed;
  top: 35px;
  left: 5%;
  width: min(10%,50px);
}

.buttonwrapper {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  width: 90%;
}

.buttonclass {
  position: relative;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: left;
}

.label-on-border {
  position: absolute;
  top: 0.84em;
  z-index: 1;
  right: 0.2em;
  color: #FFF;
}

input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  height: 60px;
  line-height: 60px;
  border-radius: 4px;
}

input[type="submit"] , button {
  border: 1px solid #074d89;
  border-radius: 6px;
  display: block;
  background-color: #074d89;
  color: #fff;
  font-weight: bold;
  /*text-transform: uppercase;*/
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 18px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}
input[type="submit"]:hover , button:hover {
  background-color: #102C57;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.spanner{
  position:absolute;
  top: 50%;
  left: 0;
  /*background: #2a2a2a;*/
  width: 100%;
  display:block;
  text-align:center;
  /*height: 300px;*/
  color: #FFF;
  transform: translateY(-50%);
  /*z-index: 1000;*/
}

.overlay{
  position: fixed;
  width: 100%;
  height: 200%;
  background: rgba(0,0,0,0.5);
}

.loadingimg {
  width: min(20%,100px);
}