.login-body {
  background-color: #f1f1f1;
}
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 90vh; */
  height: 100%;
}
.register-wrapper {
  /* height: 110vh;
  @media screen and (min-width: 1450px) {
    height: 90vh;
  } */
  height: 100%;
  margin: 50px 0;
}
.login-content-left {
  width: 50%;
  @media only screen and (max-width: 700px) {
    width: 100%;
  }
}
.login-content-right {
  width: 50%;
  @media only screen and (max-width: 700px) {
    display: none;
  }
}
.login-container {
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 550px;
  width: 75%;
  max-width: 1000px;
  border-radius: 20px;
  @media only screen and (min-width: 1400px) {
    height: 650px;
  }
  @media only screen and (max-width: 500px) {
    width: 90%;
  }
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  margin-bottom: 20px;
}
.login-heading {
  font-size: 30px;
  margin: 26px 0;
}
.social-icons {
  margin-bottom: 20px;
}
.social-icons a {
  display: inline-block;
  font-size: 24px;
  color: #333;
  text-decoration: none;
  margin: 0 10px;
}
.social-icons a:hover {
  color: #007bff;
}
.input-container {
  position: relative;
  width: 100%;
  max-width: 364px;
  margin-bottom: 15px;
}
.input-icon {
  position: absolute;
  top: 55%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #777;
}
.input-container input {
  padding: 10px;
  padding-left: 40px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: rgba(240, 237, 255, 0.8);
  width: 100%;
  height: 52px;
}
.input-container select {
  padding: 10px;
  padding-left: 40px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: rgba(240, 237, 255, 0.8);
  width: 100%;
  height: 52px;
}
.forgot-password {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 31px;
}
.forgot-password a {
  color: #0c0c0c;
  border-bottom: 1px solid #0c0c0c;
}
.forgot-password a:hover {
  color: #191e62;
  border-bottom: 1px solid #191e62;
}
.login-button {
  margin: auto;
  text-align: center;
}
.login-form {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
.login-content-right img {
  border-radius: 0 20px 20px 0;
}
.login-link:hover {
  color: #05f6a7;
}
