body {
  background-color: white;
  color: black;
  width: 350px;
  margin: auto;
}
h1 {
  margin: 0 0 10px;
  padding: 0;
  color: #051748;
  text-align: center;
  font-size: 275%;
  font-weight: normal;
}
h1 img {
  vertical-align: middle;
  width: 80px;
  height: 80px;
}
btn {
	box-sizing: border-box;
  font-size: 25px;
	padding: 3px 5px;
	border-radius: 5px 0 5px 0;
	box-shadow: 0 0 3px #00adff;
	color: white;
	background-color: #051748;
	display: inline-flex;
	align-items: center;
	text-align: center;
	cursor: pointer;
  transition: all .6s;
}
btn.invert {
  background-color: white;
  color: #051748;
  border: 1px solid #051748;
  box-shadow: none;
}
btn:hover {
  color: black;
  background-color: white;
  box-shadow: 0 0 2px black;
}
flex {
  display: flex;
  margin: 5px 0;
}
grow,[grow] {
  flex-grow: 1;
}
flex span {
  text-align: right;
  display: inline-block;
  margin-right: 10px;
  width: 80px;
}
flex input {
  font-size: 18px;
  padding: 2px;
  box-shadow: 0 0 3px black;
  border: none;
  outline: none;
}
#notifications, #ca-notifications {
  color: red;
}
#create-account-info {
  color: black;
  padding: 4px;
  border-radius: 3px;
  margin: 5px 0;
  background-color: rgb(200 200 200);
  font-size: small;
}
#logo {
  width: 40px;
  height: 40px;
  padding: 3px;
  border-radius: 5px;
  box-shadow: 0 0 3px #460000;
  background-color: #b1b1b1;
  cursor: pointer;
}
