@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  background: linear-gradient(
    to right,
    #252525 0%,
    #252525 50%,
    white 50%,
    white 100%
  );
}
.containerMain {
  height: 100vh;
  max-width: 1800px;
  margin: 0 auto;
}
.containerHalf {
  height: 100%;
  padding: 0px;
}
/* Split the screen in half */
.split {
  height: 100%;
  width: 50%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding-top: 20px;
}

/* Control the left side */
.left {
  left: 0;
  background-color: #f2f6fc;
}

/* Control the right side */
.right {
  right: 0;
  background-color: white;
}

/* If you want the content centered horizontally and vertically */
.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.loginCover {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color:#252525;
}
.LoginHead {
  margin: 10px 0px;
  color: #252525;
}
.InputParent {
  width: 500px;
  padding: 5px 10px;
  margin: 0 auto;
}
.LoginInputF {
  width: 100%;
  height: 50px;
  font-size: 20px;
  border-radius: 25px;
  padding: 5px 10px;
  border: 1px solid #252525;
}
.SubmitBtn {
  font-size: 20px;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  padding: 5px 10px;
  border: 1px solid #252525;
  color: white;
  background-color: #252525;
}
.SubmitBtn:hover {
  background-color: #184f94;
}

.isCompany {
  transform: scale(1.5);
}

.isCompanyText {
  font-size: 18px;
  margin-left: 10px;
}

@media screen and (max-width: 990px) {
  .containerHalf {
    height: auto !important;
  }
  .centered {
    height:auto;
}
  body {
    background: white;
  }
}
@media screen and (max-width: 510px) {
  .InputParent {
    width: 330px;
  }
}
