body {
  color: #444;
  font: Tahoma;
  display: flex;
  height: 96vh;
}

#app {
  width: 512px;
  margin: auto;
  box-shadow: 4px 4px 20px #888;
  padding: 20px;
  border-radius: 20px;
}

.center {
  text-align: center;
}

.startHidden {
  display: none;
}

h3 {
  margin: 4px;
  font: weight 120px;
}

input {
  width: 80%;
  margin: 4px;
  padding: 4px;
  font-size: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline-color: rgba(255, 196, 0, 0.293);
}

button {
  background-color: rgba(121, 83, 12, 0.749);
  color: white;
  font-size: 15px;
  padding: 6px;
  margin: 4px;
  border-radius: 4px;
  border: none;
  outline: none;
}

button:hover {
  opacity: 0.8;
  cursor: pointer;
}

p {
  margin: 0px;
}

.alternative {
  background-color: rgba(68, 68, 204, 0.918);
}

.danger{
  background-color: red;
}

#loading{
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  z-index: 1;
}

#auth img {
  cursor: pointer;
  margin: 4px;
}

#auth img:hover {
  opacity: 0.8;
}

#userImg {
  height: 40px;
  border-radius: 100%;
}