body{
  background: white;
  font-size: 1.5em;
  font-family: Georgia, 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: center;
  transition: background 0.625s;
}

content {
  transition-duration: 1s;
  background: white;
  padding: 0.5em;
  padding-bottom: 1em;
  box-sizing: border-box;
  width:100vw ;
  height: 100%;
  min-height: 100vh;
  display: block;
  margin: 0;
  padding-bottom: 5em;
  overflow: hidden;
}


content > *{
font-size: 1em;
}
#loginArea{
  width: 80%;
  margin: auto;
  font-size: 1.5em;
}

#loginArea > *{
  width: 100%;
  overflow: hidden;
}

#btnGroup{
  display: block;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#btnGroup{
  margin-top: 2em;
}

button{
  border-radius: 0;
  border: 0;
  padding: 0.7em 1em;
  font-size: inherit;
  background-color: lightgray;
  width: 10em;
  width: 48%;
  
}

button:enabled:hover {
  transition-duration: 0.2s;
  background-color: gray;
}

button:active{
  transition-duration: 0.1s;
  transform: scale(0.9);
}

header {
  font-family: 'headerFont';
  position: relative;
  display: flex;
  flex-direction: row;
  margin: 2em auto;
  width: fit-content;
  font-size: 2.25em;
  overflow: hidden;
  border-right: .1em solid transparent;
  animation:
    typing 0.5s steps(5, end),
    blink-caret 1s 3;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: darkgray; }
}

@keyframes typing {
  from {width: 0}
  to {width: 5ch}
}

label{
  margin: auto;
  color: darkgray;
  position:relative;
  top: -2.475em;
  margin-right: 1em;
  float: right;
  font-size: 0.75em;
  width: auto;
  display: block;
}

input{
  border: none;
  border-bottom: 0.1em solid lightgray;
  box-sizing: border-box;
  font-size: inherit;
  color:rgb(30, 30, 30);
  padding: 0.8em 1em;
  width: 100%;
  padding-bottom: 0.6em;
  background:rgb(240, 240, 240);
  
}

input:focus{
  outline:none;
  border-bottom: 0.1em solid darkgray;

}


@media screen and (min-width:1000px) {
  body{
    background-color: rgb(200,200,200);
  }

  content{
    box-shadow: 0.6em 0.6em 0.9em rgb(180, 180, 180);
    min-height: auto;
    height: auto;
    width: 1000px;
    transform: scale(0.75);
    margin: auto;
  }
  #registration{
    margin-top: -3em;
  }
}

@font-face {
  font-family:"headerFont";
  src: url("/css/Header.ttf") format("truetype");
}