@charset "utf-8";
/* CSS Document */
input,
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none; /* remove underline from anchors */
}

.login {
  background-color: #e50000;
  color: white;
  cursor: pointer;
}

.auto {
  background-color: #055aa5;;
  color: white;
  cursor: pointer;
}

.login:hover {
  background-color: #cc0000;
}

.logout {
  background-color: #23272b;
  color: white;
  cursor: pointer;
}

.logout:hover {
  background-color: #23272b;
}

input:hover,
.btn:hover {
  opacity: 1;
}
