body {
  background: #dddddd;
  margin: 0;
  color: #413180;
  padding: 0;
}

:root {
  --BlueTheme:#2148C0;
}

.list-group-item {
  color: #413180;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
@media all and (max-width: 768px) {
  .d-none-mob {
    display: none;
  }
  .HeaderStyle .logoStyle {
    width: 100%;
  }
}
.HeaderStyle {
  /* background: #fff; */
  background: #a2da79;
  padding: 0.5em 0;
  position: relative;
}
.HeaderStyle:before {
  content: "";
  position: absolute;
  top: 0;
  background: linear-gradient(to right, red, orange);
  height: 4px;
  width: 100%;
}
.HeaderStyle .logoStyle {
  max-height: 75px;
}
.HeaderStyle .userDropdown {
  border: 0;
  outline: none;
  background: none !important;
  color: #fff;
}
.HeaderStyle .userDropdown img {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 45px;
  overflow: hidden;
}

.menuStyle {
  background: #d53988; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #d53988 0%, #df5dff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d53988", endColorstr="#df5dff",GradientType=1 ); /* IE6-9 */
  border-top: hsla(0, 0%, 100%, 0.137) 1px solid !important;
  padding: 0;
}
.menuStyle .nav-link {
  color: #fff !important;
}

.bg-primary {
  background: #3b2d7d; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3b2d7d 0%, #9a3a72 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3b2d7d", endColorstr="#9a3a72",GradientType=1 ); /* IE6-9 */
  border: 0;
  color: #fff;
  z-index: 1;
}

.alert-danger {
  background: #F6E3EA;
  border: 0;
}

.alert-info {
  border: 0;
  background: #daf8ff;
}

.loginBox {
  background: var(--BlueTheme) url(../images/bg.svg);
  background-size: cover;
  min-height: 100%;
}
.loginBox .loginInn {
  height: calc(100vh - 109px);
}
.loginBox .loginInn .logoBox .logo {
  max-height: 100px;
  max-width: 400px;
}
.loginBox .loginInn .form-control {
  background: none !important;
  color: #fff;
}
.loginBox .loginInn .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.445) !important;
  opacity: 1;
}
.loginBox .loginInn .form-control::placeholder {
  color: rgba(255, 255, 255, 0.445) !important;
  opacity: 1;
}
.loginBox .loginInn .btn-light {
  color: #2148C0;
  text-transform: uppercase;
  font-weight: 600;
}
.loginBox .loginInn .form-label {
  color: #fff;
}

.card-header {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}

.btn-danger {
  background-color: initial;
  background-image: linear-gradient(-180deg, #FD4667, #d33b57);
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  border: 0;
}

.bg-danger {
  background-color: initial;
  background-image: linear-gradient(-180deg, #FD4667, #d33b57);
}

.btn-primary {
  background-color: initial;
  background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
  border: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
}

.btn-success {
  background-color: initial;
  background-image: linear-gradient(-180deg, #00D775, #00BD68);
  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
  border: 0;
}

.DashboardBox .drightBox ul {
  margin: 0;
  padding: 0;
}
.DashboardBox .drightBox ul li {
  padding: 5px 0;
  display: block;
  position: relative;
  font-weight: 600;
  background: linear-gradient(90deg, #3A2D7D 0%, #FD4667 200.66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 5px 20px 40px rgba(27, 148, 255, 0.2);
}
.DashboardBox .drightBox ul li a {
  display: block;
  text-decoration: none;
  padding: 4px 0;
  transition: 0.3s all;
}
.DashboardBox .drightBox ul li::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--BlueTheme);
  transition: width 0.3s;
}
.DashboardBox .drightBox ul li:hover::after {
  width: 100%;
}
.r-90 {
  transform: rotate(90deg);
  display: inline-block;
}

.required label::after {
  color: #e32;
  content: " *";
  display: inline;
}

.loginInfo {
  background: #3b2d7d; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #3A2D7D 0%, #FD4667 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3A2D7D", endColorstr="#FD4667",GradientType=1 ); /* IE6-9 */
  border: 0;
  min-height: 350px;
  border-radius: 1em;
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 1.5em;
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.loginInfo::before {
  content: "";
  position: absolute;
  right: 0;
  top: -25%;
  background: url(../images/r.png);
  background-size: cover;
  width: 240px;
  height: 100%;
  z-index: -1;
}
.loginInfo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/half-spread.png);
  width: 240px;
  height: 221px;
  z-index: -1;
}

h2 {
  text-align: center;
  color: #fff;
  font-weight: 400;
}

h6 {
  text-align: center;
  font-weight: 400;
  line-height: 28px;
  color: #b9ffa7;
}

.loginId {
  background: #fff;
  border-radius: 8px;
  padding: 1em;
  margin: 1em auto;
  max-width: 250px;
  color: #2148C0;
  text-align: left;
}
.loginId p {
  margin: 0;
}

.ApplicationPage {
  margin-top: 2em;
}
.ApplicationPage .ApplicationPageInn {
  background: #fff;
  padding: 1em;
  border-radius: 0.5em;
  display: block;
  text-decoration: none;
  transition: 0.2s all;
  border: #097989 1px solid;
}
.ApplicationPage .ApplicationPageInn img {
  height: 45px;
  margin: 0.3em 0 0.6em 0;
  transition: 0.2s all;
}
.ApplicationPage .ApplicationPageInn:hover {
  border-color: #d33b57;
  color: #d33b57;
}
.ApplicationPage .ApplicationPageInn:hover img {
  transform: scale(1.2);
}/*# sourceMappingURL=styles.css.map */