@font-face {
  font-family: Objectivity;
  font-weight: light;
  src: url("/static/fonts/Objectivity-Light.woff2") format("woff2"), url("/static/fonts/Objectivity-Light.otf") format("opentype");
}

@font-face {
  font-family: Objectivity;
  font-weight: bold;
  src: url("/static/fonts/Objectivity-Regular.woff2") format("woff2"), url("/static/fonts/Objectivity-Regular.otf") format("opentype");
}

@font-face {
  font-family: Objectivity;
  font-weight: bold;
  src: url("/static/fonts/Objectivity-Bold.woff2") format("woff2"), url("/static/fonts/Objectivity-Bold.otf") format("opentype");
}

html {
  position: relative;
  margin: 0;
  min-height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
button,
input {
  font-family: 'Roboto', sans-serif;
}

input::placeholder {
  font-weight: bold;
  color: #3635324d;
}

body {
  margin: 0;
  font-size: 16px;
  color: #363532;
}

a {
  color: #6950f6;
  text-decoration: none;
}

hr {
  border: 0;
  height: 1px;
  margin: 15px 0;
  background-color: #dcdcdc;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Objectivity', sans-serif;
}

h1 {
  margin-bottom: 5px;
}

h3 {
  margin: 0;
}

.subtitle {
  font-size: 18px;
  color: gray;
}

form {
  display: inline-block;
  margin: 9px 0 0 0;
}

.container {
  width: 900px;
  margin: 0 auto;
}

.topbar {
  position: absolute;
  width: 100%;
  background: white;
  height: 60px;
  border-bottom: 1px solid #dcdcdc;
}

.escape-hatch {
  display: inline-block;
  height: 100%;
  padding: 0 10px;
}

.escape-hatch img {
  height: 30px;
  margin-top: 16px;
}

.topbar-right {
  float: right;
  height: 100%;
}

.org-input {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  font-size: 15px;
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
}

.btn-login {
  background-color: #6950f6;
  border: 1px solid rgba(40, 141, 193, 0.5);
  color: #fff;
}

.left {
  padding-top: 30px;
  padding-left: 10px;
  float: left;
  width: 540px;
}

.right {
  margin-top: 30px;
  padding-right: 10px;
  padding-left: 20px;
  float: right;
  width: 320px;
  border-left: 1px solid #dcdcdc;
}

h3.code-box-title {
  margin-top: 15px;
}

.code-box {
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  padding: 15px 30px;
  margin-top: 15px;
  border-radius: 3px;
  overflow-x: auto;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

pre {
  margin-left: 10px;
  font-size: 12px;
  white-space: pre-wrap;
}

.user-info-card {
  overflow: hidden;
  margin-top: 15px;
}

.user-info-picture img {
  max-height: 64px;
  float: left;
  margin-right: 10px;
}

.user-info-name {
  font-size: 21px;
  font-weight: bold;
}

dl.logged-in-user dt {
  font-weight: bold;
  font-size: 0.8em;
  margin-bottom: 5px;
}

dl.logged-in-user dd {
  font-size: 0.8em;
  margin-bottom: 15px;
  margin-left: 15px;
}

dl.logged-in-user dd li {
  padding: 0;
}

.main {
  padding: 60px 0;
}

.bottom {
  width: 100%;
  clear: both;
  padding-top: 30px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  padding: 1rem;
  margin-top: 1em;
  background-color: #f5f4f1;
  text-align: center;
  color: #989794;
}

footer .cr {
  font-weight: bold;
  font-family: 'Objectivity', sans-serif;
}