html
{
    width:calc(100vw-1px);
    height:calc(100vh-1px);
    overflow: hidden; 
}

body
{
    width: calc(100vw-1px); 
    height: calc(100vh-1px);
    /*background: linear-gradient(to bottom, #3a6073, #16222a); */
    /* color: white; */
    
    background: linear-gradient(to bottom, #f0f0f0, #3a6073);
    color: #16222a;
    background-attachment: fixed;
    font-family: "Varela Round";
    text-align: center;
    padding: 10px;    
}


input[type=text]
{ 
    width: 100%;
    height:24px;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
}


input[type=password]
{
    width: 100%;
    height:24px;
    font-family: "Roboto Mono";
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
}


#loginScreen
{
    margin-top:33%;
}


#installPage
{
    display:none;
}

#credentialsPage
{
    display:none;
}

.credential{ text-align:center; margin-top:20px 0 20px 0; }
.credential-title
{
    width:80%;
    font-size: 20px;
    text-align: left;
    display: inline-block;
}
.credential-entry
{
    width:80%;
    text-align: center;
    display: inline-block;
}


.actionButton
{
    border-radius:8px;
    background-color:#2c4454;
    box-shadow: inset 0 0 25px rgba(255,255,255,.50);
    color:#ffffff;
    display:none;
    width:70%;
    line-height:50px;
    font-size:25px;
    height:50px;
    margin:auto;
    margin-top:100px;
    text-align:center
}

.loginButton
{
    font-family: "Verdana";
    font-size: 20px;
    background-color: #4C80AF;
    color: white;
    padding: 14px 20px;
    border: none;
    cursor: pointer;
    border-radius: 18px; 
    width: 80%; 
    margin-top: 100px;  

}


.debugBox
{
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(240,240,255,0.7); 
}



@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  text-align:center;
  margin:auto;
}