/* Authentication page css */
/*-------------------------*/
.bg-authentication {
  background-color: #F2F4F4;
}

.bg-authentication #icon-arrow {
  position: absolute;
  top: 11px;
  right: 15px;
}

.bg-authentication .brand-text {
  color: #5A8DEE;
  font-weight: 600;
  letter-spacing: 0.01rem;
}

@media only screen and (min-width: 992px) {
  .bg-authentication .disable-rounded-right {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE Specific CSS */
  .bg-authentication {
    width: 100%;
    display: block;
  }
}
small {
  font-size: 92%;
  color: #210000;
}

h2 {
  color: #210000 !important;
}

.blueLinkBold {
  font-weight: bold;
  color: #001B71 !important;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: #210000;
}

.loginTitle {
  font-weight: bold;
  font-family: "Ryker";
}

.sliderBtn {
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

label {
  text-transform: none !important;
  color: #210000;
}

.underCard {
  background-color: #9998A5;
  padding: 10px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  position: relative;
}

.roundBorders {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media screen and (min-width: 768px) {
  #auth-login {
    padding-left: 20%;
    justify-content: initial;
    /* Reset justify-content to its initial value */
  }
  body {
    background-image: url("/images/backgrounds/login_backgroud.svg") !important;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    /* Resize the background image to cover the entire container */
    background-color: none !important;
    color: #210000;
  }
  .image-container {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 324px;
    height: 127px;
    padding-right: 10px;
    filter: invert(100%);
  }
}
@media screen and (max-width: 768px) {
  body {
    background-color: #210000 !important;
  }
  .image-container {
    display: none;
  }
}
.blank-page .card.bg-authentication {
  box-shadow: -1px 1px 0px 16px #210000;
}

.btn-primary {
  border-color: #210000 !important;
  background-color: #210000 !important;
  color: #fff;
  border-radius: 30px;
  height: 38px;
}

.microsoftBtn {
  background-color: #29356c !important;
}

.px-1-px {
  padding-bottom: 7px !important;
  padding-top: 7px !important;
  text-align: center;
}

.card-color {
  background-color: #f4f2f3;
}

input {
  background-color: white;
}

.pill-color {
  background-color: white;
  color: #210000;
}

.pill-select {
  background-color: #210000;
  color: white;
}

.btn-primary:hover,
.btn-primary.hover {
  background-color: white !important;
  color: #000;
  box-shadow: inset 0px 0px 0px 1px #210000;
  -webkit-box-shadow: inset 0px 0px 0px 1px #210000;
  -moz-box-shadow: inset 0px 0px 0px 1px #210000;
}

.app-content.content {
  overflow: hidden !important;
  /* Hide scrollbars */
}

@media screen and (max-width: 576px) {
  #auth-login {
    align-content: flex-start;
    padding-top: 4px;
  }
  #card-title-text {
    font-size: 1.8rem;
  }
}
.card-header {
  justify-content: center !important;
}

.btn-primary:disabled {
  background-color: #46002a !important;
}

.errorFadeOut {
  position: absolute;
  width: 330px;
  animation: signup-response 1.5s 1;
  -webkit-animation: signup-response 1.5s 1;
  animation-fill-mode: forwards;
  animation-delay: 5s;
  -webkit-animation-delay: 5s; /* Safari and Chrome */
  -webkit-animation-fill-mode: forwards;
}

@keyframes signup-response {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
