#login {
  width: 50%;
  min-width: 300px;
  margin: auto;
}

#login > #logo {
  display: block;
  margin: 20px auto 20px auto;
  width: 232px;
  height: 83px;
  float: none;
  clear: left;
}

#logo > #sitetagline {
  font-size: 16px;
}

:root {
  --main-brand-color: #405084;
  --main-secondary-color:#cfcfcf;
  --main-text-size: 18px;
}

.btn-primary {
  background: var(--main-brand-color) !important;
  border-color: var(--main-brand-color) !important;
  box-shadow: none;
}

.btn-secondary {
  background: var(--main-secondary-color) !important;
  border-color: var(--main-secondary-color) !important;
  box-shadow: none;
  color: #000 !important;
}

.text-primary{
  color: var(--main-brand-color) !important;
}

.border-primary{
  color: var(--main-brand-color) !important;
}

a {
  color: var(--main-brand-color);
}

#loginform {
  margin: 18vh auto;
}

#registerForm {
  margin: 10.5vh auto;
}

#loginform, #registerForm {
  max-width: 600px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 2rem 4rem 2rem;
}
#loginform input, #registerForm input {
  margin-top: 20px;
}
#loginform select, #registerForm select {
  margin-top: 20px;
}
#loginform .button-cluster, #registerForm .button-cluster {
  margin-top: 20px;
}
#loginform .button-cluster button, #loginform .button-cluster a, #registerForm .button-cluster button, #registerForm .button-cluster a {
  width: 45%;
}

.bg-brandcolor {
  background: var(--main-brand-color);
}

.brand-icon {
  max-height: 40px;
}

h4#logo {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

.login-form-footer {
  text-align: center;
  margin-top: 20px;
}

main > .container {
  min-height: 100vh;
  padding: 2rem;
  max-width: 100%;
}
main > .container .page-header {
  color: #6b6b6b;
}

.container.splash {
  background-color: var(--main-brand-color);
  width: 100vw;
  max-width: 100vw !important;
}
.container.splash .splash-wrapper {
  width: 30%;
  min-width: 470px;
}
.container.splash .splash-wrapper .sub_title {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
.container.splash .splash-wrapper .brand-icon {
  width: 300px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.container.splash .splash-wrapper .button-cluster a {
  width: 48%;
  font-size: 1.4rem;
}
.container.splash .splash-wrapper .button-cluster .btn.btn-light {
  color: var(--main-brand-color);
}

.navbar-dark .navbar-nav a.nav-link {
  font-size: var(--main-text-size);
  color: #fff;
}

.collapse-bar {
  width: 1.5rem;
}

#sidebar-wrapper {
  background: #f3f3f3;
  display: flex;
  align-items: flex-start;
  padding-top: 5px;
}
#sidebar-wrapper #sidebarCollapse {
  box-shadow: none;
}
#sidebar-wrapper #sidebar {
  margin-left: -300px;
  min-width: 300px;
  max-width: 300px;
  background: #f3f3f3;
  color: #000;
  transition: all 0.3s;
}
#sidebar-wrapper #sidebar li {
  padding: 1rem 1rem 0 1rem;
}
#sidebar-wrapper #sidebar li a {
  text-decoration: unset;
  color: #000000;
  font-size: var(--main-text-size);
}
#sidebar-wrapper #sidebar li a .collapse-icon {
  width: 0.5rem;
  height: 25px;
  margin-left: 2px;
}
#sidebar-wrapper #sidebar.active {
  margin-left: 0;
}

#verifyForm, #verifyOptionForm {
  width: 90vw;
  margin: 18vh auto;
  max-width: 650px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  padding: 2rem 4rem 2rem;
  text-align: center;
}
#verifyForm #verifyHeader, #verifyOptionForm #verifyHeader {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}
#verifyForm .resend-code, #verifyOptionForm .resend-code {
  color: #9fa0a0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#verifyForm .resend-code .refresh-icon, #verifyOptionForm .resend-code .refresh-icon {
  width: 15px;
  margin-right: 5px;
}

#twofacode, #twofacodeSubmit {
  width: 45%;
  margin: 0 auto 20px;
}

#refresh-count {
  margin: 0 4px 0px;
}

#twofacode {
  text-align: center;
}

#refresh-count {
  margin: 0 3px;
}

#resend-code-action {
  margin-left: 5px;
  cursor: pointer;
}

#resend-code-action.disabled {
  pointer-events: none;
  color: initial;
  text-decoration: none;
}

#verifyOptionForm .radio {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 110%;
  margin: 30px 0;
}
#verifyOptionForm .radio label {
  padding: 5px;
}
#verifyOptionForm .radio label input[type=radio] {
  margin-right: 5px;
}

.left-floating>label{
  left:auto;
}
