/* ================================================== */
/* FORM LOGIN */
/* ================================================== */
.header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.header__bg,
.header__form {
  margin-top: 30px;
}

.header__bg {
  background-image: url("../img/bg_login.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  order:2;
  margin-right: 30px;
}

.header__form.container {
  padding: 0 80px;
  order: 1;
}

.header__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__form .logo {
  width: 80%;
  display: flex;
}

.header__form .logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* .sso{
  width: 90%;
} */

.login-form{
  padding-top: 10%;
  width: 80%;
}

/* .login_alert{
  width: 90%;
} */

.welcome_txt {
  color: #2B447E;
  font-size: 32px;
  font-weight: 500;
}

.app_txt {
  color: #2B4580;
  font-size: 54px;
  font-weight: 700;
}


.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #2B4580;
}
.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid #4C73DC; /* Adjust the thickness here */
}
.separator:not(:empty)::before {
  margin-right: .25em;
}
.separator:not(:empty)::after {
  margin-left: .25em;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .header {
    grid-template-columns: 1fr;
  }

  .header__bg {
    display: none;
  }

  .header__bg,
  .header__form {
    margin-top: 0px;
  }

  .header__form.container {
    padding: 0 20px;
  }

  .header__form .logo {
    margin-top: 8%;
    width: 100%; /* Ensure the logo fits within the container */
  }

  .login-form{
    padding-top: 10%;
    width: 100%;
  }

  .login_alert{
    width: 100%;
  }

  .sso{
    width: 100%;
  }

  .welcome_txt {
    font-size: 28px;
  }

  .app_txt {
      font-size: 48px;
  }

}
