@charset "UTF-8";
.authentication-wrapper {
  display: flex;
  flex-basis: 100%;
  min-height: 100vh;
  width: 100%;
}
.authentication-wrapper .authentication-inner {
  width: 100%;
}
.authentication-wrapper .authentication-inner .authentication-logo .logo_image {
  height: 100px;
  width: 400px;
  margin-bottom: 20px;
}

.authentication-wrapper .authentication-inner .card_body .card_title{
  margin: 0px;
  background: #343a40 !important;
  border-radius: 0.75rem 0.75rem 0 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.authentication-wrapper .authentication-inner  .card_body{
  flex: 1 1 auto;
}

.authentication-wrapper .authentication-inner .card_body .card_title .card_title_text{
  color: rgba(255, 255, 255, .9);
  margin: 0px;
}
.authentication-wrapper .authentication-inner .card_body .input_body{
    width: 80%;
    margin: 41px;
}
.authentication-wrapper .authentication-inner .card_body .input_body .form-control:focus{
  border-color: none;
}
.authentication-wrapper .authentication-inner .card_body .input_body .form-select:focus{
  border-color: none;
}
.authentication-wrapper .authentication-inner .card_body .btn-primary:hover{
  color: #fff;
  background-color: slategrey;
  transform: translateY(-1px);
}
.authentication-wrapper .authentication-inner .card_body a{
  color: black;
}
.authentication-wrapper .authentication-inner .card_body .btn-primary{
  color: black;
  background-color: darkgray;
  border: none;
  font-size: 20px;
  box-shadow: none;
}
.authentication-wrapper .authentication-inner .authentication-logo .logo_title {
  font-size: 2rem;
  font-weight: 700 !important;
  color: #3e444a;
  display: flex;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 40px;
  font-family: system-ui;
}
.authentication-wrapper.authentication-basic {
  margin-top: 50px;
  justify-content: center;
  overflow: hidden;
}
.authentication-wrapper.authentication-cover {
  align-items: flex-start;
}
.authentication-wrapper.authentication-cover .authentication-inner {
  height: 100vh;
}
.authentication-wrapper.authentication-basic .authentication-inner {
  max-width: 400px;
  position: relative;
}
.authentication-wrapper.authentication-basic .authentication-inner:before {
  width: 148px;
  height: 148px;
  content: " ";
  position: absolute;
  top: -40px;
  right: -40px;
}
.authentication-wrapper.authentication-basic .authentication-inner:after {
  width: 243px;
  height: 240px;
  content: " ";
  position: absolute;
  bottom: -68px;
  left: -46px;
}
.authentication-wrapper.authentication-basic .authentication-inner .card {
  z-index: 1;
}
.authentication-wrapper.authentication-basic .authentication-inner .card .app-brand {
  margin-bottom: 2.5rem;
}
.authentication-wrapper .auth-input-wrapper .auth-input {
  max-width: 50px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  font-size: 150%;
}

@media (max-width: 575.98px) {
  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem;
  }
}
.light-style .authentication-wrapper .authentication-bg {
  background-color: #fff;
}

