﻿html{
    height: 100%;
    background: linear-gradient(100deg, rgba(255,255,255,1) 0%, rgba(214,219,233,1) 400px, rgba(214,219,233,1) 100%);
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Helvetica;
    font-size: 16px;
}

div.nav{
    background-color: #d6dbe9;
    height: 37px;
    margin: 0px;
    padding: 0px;
    user-select: none;
    overflow: hidden;
    font-size: 16px;
}

div.login{
    padding: 10px;
    width: 200px; 
    border: 1px solid #7d7d7d; 
    border-radius: 7px 7px 7px 7px; 
    margin: 20px; 
    background: white;
}

a:link {
    text-decoration: none;
    color: blue;
} 

a:visited{
    color: blue;
}

a:hover {
    text-decoration: underline;
}

input[type=text], input[type=password] {
    width: 100%;
    height: 35px;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #7d7d7d;
    font-family: Helvetica;
}

input[type=submit] {
    width: 100px;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #7d7d7d;
    font-family: Helvetica;
}

.timer {
    background-color: white;
    color: black;
    font-family: Orbitron; 
    width: 40px;
    padding: 3px;
    border-bottom-right-radius: 10px;
    border-bottom: 1px solid #808080;
    border-right: 1px solid #808080;
    float: left;
}

.display {
    height: 35px;
    margin-left: 20px;
    margin-right: 20px;
    float: left;
    padding-top: 1px;
}

.logout
{
    background-color: white;
    text-align: center;
    width: 60px;
    padding: 3px;
    border-bottom-left-radius: 10px;
    border-bottom: 1px solid #808080;
    border-left: 1px solid #808080;
    float: right; 
}

.logout a{
    color: black;
}

.next {
    background-image: linear-gradient(to right, #34a853, #34a853, #4086f4, #4086f4);
    background-size: 300% 100%;
    font-size: 15px;
    color: white;
    outline: none;
    height: 29px;
    width: 111px;
    border: 2px solid white;
    margin-top: 4px;
    border-radius: 50px;
    cursor: pointer;
}

.next:hover {
    background-position: 99% 0;
    moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}

.white {
  color: white;
  font-size: 22px;
}

.green {
  color: #34a853;
  font-size: 22px;
}

.grey {
  color: #808080;
  font-size: 22px;
}

.red {
  color: #ea4235;
  font-size: 22px;
  cursor: pointer;
}