.container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.container .header-bar {
  display: flex;
  justify-content: center;
  background-color: var(--ireina-blue);
  position: fixed;
  width: 100%;
}
.container .header-bar a {
  text-decoration: none;
}
.container .header-bar .header {
  width: 100%;
  max-width: 1320px;
  height: var(--nav-height);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: white;
}
.container .header-bar .header .logo {
  display: flex;
  align-content: center;
  align-items: center;
}
.container .header-bar .header .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.container .header-bar .header .nav ul.menu-items {
  display: flex;
  list-style-type: none;
  gap: 1rem;
}
.container .header-bar .header .nav ul.menu-items > li {
  transition: border-bottom 0.2s linear;
  display: inline;
  border-bottom: 0px solid transparent;
}
.container .header-bar .header .nav ul.menu-items > li > a {
  display: block;
  color: white;
  padding: 0.5rem 0.5rem;
}
.container .header-bar .header .nav ul.menu-items > li:hover {
  border-bottom: 1px solid white;
  cursor: pointer;
}
.container .header-bar .header .nav.auth li[data-dropdown-wrapper] a[data-dropdown-trigger] {
  color: white;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.container .header-bar .header .nav.auth li[data-dropdown-wrapper] a[data-dropdown-trigger] .name, .container .header-bar .header .nav.auth li[data-dropdown-wrapper] a[data-dropdown-trigger] .email-role {
  display: block;
}
.container .header-bar .header .nav.auth li[data-dropdown-wrapper] a[data-dropdown-trigger] .email-role {
  font-size: 0.8rem;
}
.main-content {
  display: flex;
  height: 100%;
  width: 100%;
}
.main-content .left {
  background: url("/img/landing-bg2.jpg");
  background-size: cover;
  flex: 1;
}
.main-content .left .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 69, 122, 0.8);
}
.main-content .right {
  flex: 1;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-content .right .center-content {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.main-content .right .center-content form {
  display: flex;
  flex-direction: column;
}
.main-content .right .center-content form .form-floating {
  margin-bottom: 1rem;
}
.main-content .right .center-content form .forgot-password-cta {
  text-align: right;
  color: black;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}
.main-content .right .center-content form .forgot-password-cta:hover {
  text-decoration: underline;
}
.main-content .kb {
  max-width: 20rem;
  width: 100%;
}