﻿body {
  background-color: #f5f9fc;
  font-family: "Inter";
  line-height: 1.3;
}

.welcome-page .logo {
  width: 64px;
}

.icon-banner {
  width: 32px;
}

.body-container {
  margin-top: 60px;
  padding-bottom: 40px;
}

.welcome-page li {
  list-style: none;
  padding: 4px;
}

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid lightgray;
}
.grants-page .card .card-title {
  font-size: 120%;
  font-weight: bold;
}
.grants-page .card .card-title img {
  width: 100px;
  height: 100px;
}
.grants-page .card label {
  font-weight: bold;
}

.bg-container {
  background-color: #d3e4f5;
  background-image: url("/img/bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.content {
  background-color: #fff;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 55px 0;
}
.content h1 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 20px;
}
.content .alert-danger {
  padding: 8px;
}
.content .alert-danger .validation-summary-errors ul {
  margin: 0;
  padding-left: 24px;
  list-style-type: none;
  font-size: 0.8rem;
  line-height: 1.2;
}

.validation-icon {
  position: absolute;
  left: 8px;
  top: 8px;
}

.password-eye {
  background-color: #fff;
  position: relative;
}
.password-eye input[type=checkbox] {
  color: #888;
}
.password-eye input[type=checkbox]:hover {
  color: #212529;
}
.password-eye input[type=checkbox]:before {
  content: "\e106";
  font-family: "Glyphicons Halflings";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  cursor: pointer;
}
.password-eye input[type=checkbox]:checked:before {
  content: "\e105";
}

.enable-authenticator-page .card {
  cursor: pointer;
  position: relative;
}
.enable-authenticator-page .card .badge-info {
  border: 1px solid #017FFF;
  color: #017FFF;
  background: none;
  position: relative;
  top: -2px;
}
.enable-authenticator-page .card:hover {
  background-color: #E6F7FF;
  border-color: #017FFF;
}
.enable-authenticator-page .card:hover img {
  filter: invert(32%) sepia(85%) saturate(2916%) hue-rotate(198deg) brightness(103%) contrast(105%);
}
.enable-authenticator-page .card:hover:after {
  color: #017FFF;
}
.enable-authenticator-page .card:after {
  font-family: "Glyphicons Halflings";
  content: "\e258";
  display: inline-block;
  position: absolute;
  top: calc(50% - 6px);
  right: 6px;
  font-size: 12px;
  color: #ccc;
}
.enable-authenticator-page #qr-code img, .enable-authenticator-page #qr-code canvas {
  width: 100%;
}
.enable-authenticator-page ol, .enable-authenticator-page ul {
  padding-left: 20px;
}
