body {
  --light-black: #5f6368;
  --dark-black: #202124;
  --white: white;
  --dark-green: #01875f;
  --light-green: #e6f3ef;
  --stroke: #ececec;
  --dark-red: #c71c56;
  --light-red: #ffebee;
  font-family: "Poppins", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.container {
  min-height: 100vh;
  overflow: hidden;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px 20px 50px;
  height: auto;
  width: 100%;
  z-index: 10;
  overflow: hidden;
  background-color: var(--white);
  user-select: none;
}

.nav-span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-right: 3px;
}

.nav-span:last-child {
  padding-right: 0px;
}

.navbar img {
  position: relative;
  height: 2.125rem;
  width: 5.9375rem;
}

.navbar span {
  position: relative;
  color: var(--light-black);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  user-select: none;
}

#home-icon {
  color: var(--dark-green);
}

.navbar span:hover {
  color: var(--dark-green);
}

nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-container {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 50px 0px 50px;
  margin-top: 50px;
  overflow: hidden;
}

.left-div img {
  width: 18.75rem;
  margin-top: 35px;
  user-select: none;
}

.left-div {
  width: 20.8125rem;
  margin-top: 30px;
}

.title {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  user-select: none;
}
.title-1 {
  color: var(--dark-green);
}
.title-2 {
  color: var(--dark-black);
}
.home-button {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.right-div {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.login-div {
  overflow: hidden;
  z-index: 0;
}

.home-login {
  display: flex;
  flex-direction: column;
}

.home-login-heading {
  color: var(--dark-black);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 30px;
  text-align: left;
}

.home-login button:hover {
  opacity: 0.9;
}

.farmer {
  font-size: 0.75rem;
  height: 3.125rem;
  width: 15.625rem;
  margin-bottom: 25px;
  border-radius: 10px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--white);
  background-color: var(--dark-green);
  cursor: pointer;
  align-items: center;
}
.customer {
  font-size: 0.75rem;
  height: 3.125rem;
  width: 15.625rem;
  border-radius: 10px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--white);
  background-color: var(--dark-green);
  cursor: pointer;
  align-items: center;
}

@media only screen and (max-width: 62.5em) {
  .sub-container {
    justify-content: space-between;
  }
}

@media only screen and (max-width: 50em) {
  .navbar {
    background-color: var(--white);
    padding: 10px;
  }

  .sub-container {
    padding: 10px;
    justify-content: center;
  }

  .left-div {
    display: none;
  }

  .right-div {
    display: flex;
    justify-content: center;
  }

  .home-login {
    display: flex;
    justify-content: center;
  }
}
