@font-face {
  font-family: "Mulish", sans-serif;
  src: url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
}

html, body {
  min-height: 100vh;
}

body {
  font-family: "Mulish", sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

.navbar {
  background-color: #FFFFFF;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .navbar {
    padding: 12px 16px;
  }
}

@media (min-width: 1200px) {
  .navbar {
    padding: 16px;
  }
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  max-width: 2560px;
  height: 2px;
  background-color: #1159E8;
}

.message-container {
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  width: 100%;
  color: #373737;
  box-sizing: border-box;
  align-items: stretch;
}

.message-left-side {
  flex: 0 0 40%;
  padding: 60px 40px 60px 10%;
  box-sizing: border-box;
}

.message-right-side {
  flex: 1;
  background-image: url('/knowledge-center.png');
  background-repeat: no-repeat;
  /* Use contain so image always fits within the column height */
  background-size: contain;
  /* Align to top-center so it sits flush with the top and clips at the bottom */
  background-position: center top;
}

.title-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.title-icon {
  width: 50px;
}

.title {
  color: #1159E8;
  font-weight: 700;
  font-size: 24px;
  margin: 8px 0 55px;
}

.message-title {
  color: #1159E8;
  font-weight: 700;
  margin: 0 0 20px;
}

.message-title--little-margin {
  margin: 60px 0 0;
}

.message {
  color: #373737;
  font-weight: 400;
  font-size: 14px;
}

.highlighted-text {
  font-weight: 700;
}

.login-button {
  border: none;
  color: #FFFFFF;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 55px;
  cursor: pointer;
  background-color: #1159E8;
  width: auto;
  height: 34px;
  border-radius: 4px;
}

.login-button:hover {
  background-color: #0f4fd1;
}

.footer {
  display: flex;
  width: 100%;
  height: 90px;
  justify-content: center;
  align-items: center;
  color: #373737;
  background-color: #F5F6F7;
}

h1, h2, h3 {
  color: #1159E8;
}

.bo-logo {
  display: block;
  height: 28px;
  width: auto;
}

@media (min-width: 768px) {
  .bo-logo {
    height: 36px;
  }
}

@media (min-width: 1200px) {
  .bo-logo {
    height: 42px;
  }
}