/* Authentication page css */

/*-------------------------*/
body {
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212837;
  text-align: left;
  background-color: #f3f2f1;
}

.flexbox-container {
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  background-size: cover;
  margin-right: 0rem; 
  margin-left: 0rem;
}

.bg-authentication {
  box-shadow: -8px 20px 25px 0 rgba(25, 42, 70, 0.3);
  background-color: #F2F4F4;
}

/* Divider Css */

/* --------- */

.divider {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  margin: 1rem 0;
}

.divider .divider-text {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  padding: 0 1rem;
  background-color: #FFFFFF;
}

.divider .divider-text i {
  font-size: 1rem;
}

.divider .divider-text:before,
.divider .divider-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9999px;
  border-top: 1px solid #DFE3E7;
}

.divider .divider-text:before {
  right: 100%;
}

.divider .divider-text:after {
  left: 100%;
}

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

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


.card-body >form *{
	margin: 10px 0px;
}


@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;
  }
}

