*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

div.container {
  display: flex;
  flex-flow: row nowrap;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

div.bg_logo,
div.form_container {
  display: block;
  width: 50%;
  height: 100vh;
  height: auto;
  position: relative;
}

div.bg_logo::after {
  content: '';
  display: block;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  /* background: linear-gradient(90deg, #333, #141514); */
  background: linear-gradient(90deg, #333, #1e5a2d);
}

div.bg_logo::before {
  content: "";
  background-image: url("../assets/img/tutaxi.png");
  /* background-image: url("../assets/img/cloudTaxiLogo.jpeg"); */
  background-position: center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1080;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}

div.form_container {
  display: flex;
  flex-direction: row nowrap;
  align-items: center;
  justify-content: center;
  /* background-color: #f8f9fa; */
  background-color: white;
}

div.loginForm {
  display: block;
  padding: 1rem 0;
  max-width: 60%;
  width: 100%;
  margin: 0 auto;
}

form {
  display: flex;
  flex-flow: column wrap;
  gap: 1.25rem;
  padding: 1rem 0;
}

div.loginForm h2,
div.loginForm p {
  margin-bottom: 0.5rem;
  font-weight: lighter;
  letter-spacing: 0px;
}

form input {
  height: 40px;
  width: 100%;
  border-radius: 25px;
  border: 1px solid transparent;
  outline: none;
  box-shadow: 0px 2px 4px 0px #8080802e;
}

form input[type="email"],
form input[type="password"] {
  padding-left: 1rem;
  background-color: whitesmoke;
}

div.loginForm h2 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

form a {
  margin-left: 1rem;
  color: #2d6e3d;
}

form input[type="submit"] {
  /* background: #333; */
  background: #2d6e3d;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 150ms linear;
}

form input[type="submit"]:hover {
  cursor: pointer;
  /* background: #3f3f3f; */
  background: #245f33;
  transition: all 150ms linear;
}

.sub_form {
  max-width: 88%;
  width: 100%;
  margin: 0 auto;
}

.floating-image-container {
  display: block;
  position: absolute;
  top: 5%;
  left: 50%;
  width: 360px;
  height: auto;
  transform: translateX(-50%);
}

.floating-image-container img {
  display: block;
  width: inherit;
}