body {
  background-color: #ccccff;
}

#login {
  z-index: 10;
  left: 0;
  padding-top: 60px;
  display: none;
  width: 100%;
  position: fixed;
  height: 100%;
  top: 0;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

#head {
  padding-left: 60px;
  font-size: 24px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

input {
  color: rgb(38, 50, 56);
  background: rgba(136, 126, 126, 0.04);
  font-weight: 700;
  width: 76%;
  border: none;
  margin-left: 40px;
  border-radius: 20px;
  letter-spacing: 1px;
  outline: none;
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  border: 2px solid rgba(0, 0, 0, 0.02);
  margin-bottom: 20px;
  font-size: 14px;
}

button {
  font-size: 15px;
  border: 0;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 40px;
  background-color: #ccccff;
  cursor: pointer;
}

#btnLogin, #btnScore {
  padding: 0;
  margin-left: 40px;
  border-style: none;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  font-family: 'Ubuntu', sans-serif;
}

#btnScore {
  margin-left: 75%;
}

#submit {
  border-radius: 20px;
  border-bottom: solid;
  border-width: 2px;
  margin-left: 32%;
}

#switch {
  padding: 0;
  border: none;
  background: none;
  margin-left: 42%;
}

p {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: 'Ubuntu', sans-serif;
}

#info{
  margin-left: 50px;
}

ul {
  list-style-type: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  font-family: 'Ubuntu', sans-serif;
  margin-top: 20px;
  margin-left: 20px;
}

li{
  margin-bottom: 30px;
}

.loginPage {
  box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
  width: 400px;
  padding-top: 50px;
  height: 380px;
  background-color: #fefefe;
  margin: 7em auto;
  border-radius: 1.5em;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0)
  }
  to {
    -webkit-transform: scale(1)
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}