.step {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 100vh;
}
.container-left {
  padding: 100px 130px;
  background-color: #f6f9ff;
}
.container-right {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  padding: 20px;
  user-select: none;
}
.login-title {
  font-size: 3rem;
  font-weight: bold;
}
.login-title-2 {
  font-size: 1.5rem;
}
.login-title-3 {
  padding-top: 50px;
  font-size: 1.5rem;
}
.step-title-underline {
  position: relative;
  line-height: 1.4;
}
.step-title-underline::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  height: 4px;
  width: 80px;
  background-color: #fa5130;
}
.login-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  max-width: 400px;
}
.login-form-title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #8691a3;
  font-size: 1.5rem;
}
.login-form-title::after {
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
  content: "";
  height: 3px;
  width: 50px;
  background: linear-gradient(to right, #ffffff, #e9e9e9);
}
.login-form-title::before {
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  content: "";
  height: 3px;
  width: 50px;
  background: linear-gradient(to right, #e9e9e9, #ffffff);
}
.form-ipt {
  width: 100%;
  padding: 15px 30px;
  margin-top: 20px;
  font-size: 0.8rem;
  outline: none;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
}
.form-ipt::placeholder {
  color: #999999;
}
.remember-pwd {
  display: flex;
  align-items: center;
  padding-top: 20px;
  font-size: 0.8rem;
}
.remember-pwd input {
  margin-right: 10px;
}
.login-btn {
  cursor: pointer;
  width: 100%;
  margin-top: 50px;
  outline: none;
  border: none;
  color: #ffffff;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 70px;
  background-color: #fa5130;

  text-align: center;
}
.login-btn:hover {
  color: white;
}
@media (max-width: 1024px) {
  .step {
    grid-template-columns:1fr;
  }
  .container-left {
    padding: 50px 60px;
  }
  .login-title {
    font-size: 2rem;
  }
  .login-title-2 {
    font-size: 1.2rem;
  }
  .login-title-3 {
    padding-top: 20px;
    font-size: 1.2rem;
  }
  .form-ipt {
    padding: 10px 20px;
  }
  .login-btn {
    margin-top: 20px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .container-left {
    padding: 30px;
  }
  .login-title {
    font-size: 1.5rem;
  }
  .login-container {
    width: 100%;
  }
}