* {
  box-sizing: border-box;
  font-family: Arial, "Kumbh Sans", sans-serif;
}

.App {
  display: flex;
  flex-direction: column;
}
.App > div {
  flex: 1;
}
.App .Page {
  height: 100%;
  padding: 10px;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

input,
select {
  color: #000;
}

.App > header {
  background-color: #303030;
  text-align: center;
  padding: 10px;
}
.App > header img {
  height: 50px;
}

.Sidebar {
  display: flex;
  flex-direction: column;
  background-color: #303030;
}
.Sidebar a {
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
  border-bottom: 1px solid lightgray;
  font-size: 24px;
  padding: 5px 10px;
}
.Sidebar a:hover {
  background-color: #585858;
}
.Sidebar a:link,
.Sidebar a:visited,
.Sidebar a:hover,
.Sidebar a:active {
  color: #fff;
}
.Sidebar a.current {
  background-color: #585858;
}

.Page.Login {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 100%;
  background-color: #303030;
}
.Page.Login .formWrapper {
  width: 500px;
  color: #fff;
}
.Page.Login .imageWrapper {
  text-align: center;
  margin-bottom: 50px;
}

.Page.Experts table tbody tr {
  cursor: pointer;
}
.Page.Experts table tbody tr:hover {
  background-color: lightgrey;
}

.Page.OnboardingTokens {
  height: 100%;
}

/*# sourceMappingURL=styles.css.map */
