* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  height: 100%;
  width: 100%;
  animation: fadeInAnimation 1s ease-in-out;
}
@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
nav {
  font-family: "Inter";
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: white;
}
.left {
  flex: 1;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.left a {
  margin: auto 0;
  font-size: 1.01713rem;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45306rem;
  color: #201e1e;
}
.left img {
  width: 100px;
  height: 80.16px;
}
.right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0 40px;
}
.right a,
p {
  margin: auto 0;
  font-size: 1.01713rem;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45306rem;
  color: #201e1e;
  padding: 10px;
}
.left a:hover,
.right a:hover {
  transform: scale(1.05);
  transition: 0.4s ease;
  text-decoration: none;
}
.content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
#left {
  width: 50%;
}

#right {
  width: 50%;
  background-image: url("../images/login.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 89vh;
  /* border: 2px olivedrab solid; */
  /* background-color: plum; */
}
.left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  /* border: 2px solid pink; */
  margin: auto;
  padding: 20px;
}
h2 {
  color: #000;
  font-size: 2.5rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 3.3rem;
  text-align: center;
}
.left-content p {
  color: #000;
  font-size: 1.4rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 2.39rem;
  text-align: center;
}
.separate p {
  color: #000;
  font-size: 1rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18831rem;
  margin-top: 10px;
}
.col-md-3 {
  display: flex;
  margin: auto;
  justify-content: center;
}

input[type="email"],
input[type="password"] {
  color: #5a5a5a;
  font-size: 1.14738rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18831rem;
}
input {
  width: 90%;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 0.81956rem;
  background: #fff;
  box-shadow: 1.964426040649414px 5.8932785987854px 19.644262313842773px 0px
    #bcd2de;
  border: none;
  padding: 10px;
  margin: 20px;
}
input[type="email"]:focus,
input[type="password"]:focus {
  outline: none;
  transform: scale(1.03);
  transition: 0.5s ease;
}
.forgot a {
  text-decoration: none;
  color: #d93f21;
  font-size: 1.14738rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  line-height: 1.18831rem;
  text-align: right;
  margin: 10px auto;
  display: flex;
  width: 85%;
  justify-content: right;
}
.forgot p:hover {
  cursor: pointer;
}
input[type="submit"] {
  height: 4rem;
  flex-shrink: 0;
  background-color: #82cc47;
  color: #fff;
  font-size: 1.47519rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  border: none;
  width: 90%;
  margin: 20px;
  border-radius: 10px;
}
.redirect p {
  color: #304322;
  font-size: 0.98344rem;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  line-height: 1.63906rem;
  letter-spacing: 0.02456rem;
}
.redirect span a {
  color: #3a30ab;
}
input[type="submit"]:hover {
  cursor: pointer;
}
.redirect span a:hover {
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  #left {
    width: 100%;
  }
  #right {
    width: 100%;
  }
}
