body,
html {
  padding: 0;
  margin: 0 !important;
  font-family: "Inter", sans-serif;
}
.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
}

.cform {
  overflow: hidden;
  width: 50%;
  height: 100%;
  background-color: #005fb9;
  /* background-color: #4252b4; */

  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.cbg {
  overflow: hidden;
  background-color: white;
  width: 50%;
  height: 100%;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
}
.cform #loginbox {
  width: 65%;
  /* width: 220px; */
}
.cform .panel-heading {
  text-align: center;
  margin-bottom: 48px;
}
.cform .panel-heading .logo {
  width: 85%;
}
.cform .panel-heading .panel-title {
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
}
.cform .panel-heading .panel-title-small {
  font-size: 1rem;
  margin-top: 7px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
.cform .inputUser {
  font-size: 1em;
  margin-bottom: 5px !important;
}
.cform .inputPassword {
  font-size: 1em;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
}
.cform .input-group {
  margin-bottom: 16px;
}
.cform #username {
  width: 100%;
}
.cform #password {
  width: 100%;
}
input {
  /* height: 28px; */
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 6px;
  font-size: 13px;
}

.btnSignIn {
  color: white;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  border: none;
  background-color: #F27021;
  /* background-color: #7b94d4; */
  padding: 10px 12px;
}
.btnSignIn:hover {
  opacity: 0.8;
}

.cbg {
  background-image: url("/static/images/loginbackground.png");
  /* object-fit: fill; */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

@media only screen and (max-device-width: 768px) {
  .container {
    display: flex;
    flex-direction: column !important;
  }
  .cbg {
    display: none;
  }
  .cform {
    width: 100%;
  }
  .cform #loginbox {
    width: 75%;
  }
  .cform .panel-heading .logo {
    width: 75%;
  }
}
