*, * + * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.porContainer {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  height: 100vh;
  background-color: #FCFCFC;
}

.porContainer__wrapper.left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 5vw;
}

.porContainer__wrapper.right {
  background-image: url("https://www.point-of-rental.com/wp-content/uploads/2022/09/loginBackground-01.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  flex: 1;
}

.porContainer__img {
  max-width: 275px;
  width: 90vw;
  position: absolute;
  top: 20px;
}

.porContainer__heading {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}

.porContainer__p {
  font-size: 0.9rem;
  margin-bottom: 1em;
  color: #737576;
  text-align: left;
}

.porForm {
  z-index: 2;
}

.porForm__label {
  font-weight: bold;
  color: #343333;
  font-size: 0.9rem;
}

.porForm__input {
  margin-bottom: 1em;
  padding: 0.5em;
  border-radius: 0.25em;
  border-color: rgba(0, 0, 0, 0.2);
  min-width: 30em;
}

.porForm__btn {
  width: 100% !important;
  padding: 1em !important;
  background-color: #81bd41 !important;
  background: #81bd41 !important;
  border: none !important;
  color: white !important;
  font-size: 0.9rem !important;
  box-shadow: 0px 10px 10px rgba(129, 189, 65, 0.25) !important;
  margin-top: 1em !important;
}

@media only screen and (max-width: 900px) {
  .porContainer__wrapper.left {
    flex: 1;
    align-items: center;
    padding: 0em 1em;
  }
  .porContainer__wrapper.left::before {
    content: "";
    background-image: url("https://www.point-of-rental.com/wp-content/uploads/2022/09/mobile-login-v2.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    opacity: 0.5;
  }
  .porContainer__wrapper.right {
    display: none;
  }
  .porContainer__heading {
    margin-bottom: 0.25em;
    text-align: center;
    line-height: 0.85em;
  }
  .porContainer__p {
    text-align: center;
  }
}
@media only screen and (max-width: 450px) {
  .porForm__input {
    width: 90vw;
    min-width: 0em;
  }
}/*# sourceMappingURL=main.css.map */