.login-container {
  position: relative;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  margin-top: 20px;  
  padding: 5% 0;

}
.form-title{display: none;}
.title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}

.input-field {
  background-color: #f74781;
  border-radius: 50px;
  display: grid;
  grid-template-columns: 15% 85%;
  height: 55px;
  margin: 10px 0;
  max-width: 380px;
  padding: 0 .4rem;
  position: relative;
  width: 100%;
}

.input-field i {
  text-align: center;
  line-height: 55px;
  color: #ffffff;
  transition: 0.5s;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.social-text {
  padding: 0.7rem 0;
  font-size: 1rem;
}

.social-media {
  display: flex;
  justify-content: center;
}

.social-icon {
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.45rem;
  color: #333;
  border-radius: 50%;
  border: 1px solid #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}
.hs-input{text-align: left;}
.social-icon:hover {
  color: #F86F03;
  border-color: #F86F03;
}
.login-container:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 48%;
  transform: translateY(-50%);
  background-image: linear-gradient(137deg, rgb(215 215 215), rgb(230 217 253));
  transition: 1.8s ease-in-out;
  border-radius: 50%;
  z-index: -1;
}
.image {
  width: 100%;
  transition: transform 1.1s ease-in-out;
  transition-delay: 0.4s;
  max-width: 500px !important;
  display: block;
}

.panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 1.5rem;
}

.panel p {
  font-size: 0.95rem;
  padding: 0.7rem 0;
}


@media (max-width: 1024px) {
  .login-container {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .image {
    margin: auto;
  }
  .login-container:before {  
    height: 1200px;
    border-radius: 50%;
    z-index: -1;
  }
}
@media (max-width: 870px) {
  .login-container {
    overflow:hidden;
    overflow-y: scroll; 

  }



  .image {
    width: auto;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
    display: block;
    margin: auto;
    max-width: 280px !important;

  }
  .panel .content {
    padding-right:0;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.8s;
  }
  .panel h3 {
    font-size: 1.2rem;
  }
  .panel p {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }
  .btn.transparent {
    width: 110px;
    height: 35px;
    font-size: 0.7rem;
  }




}

@media (max-width: 570px) {
  .form {
    padding: 0 1.5rem;
  }
  .panel .content {
    padding: 0.5rem 1rem;
  }
  .login-container {
    padding: 1.5rem;
  }

  .login-container:before {
    bottom: 72%;
    left: 50%;
  }

  .login-container.sign-up-mode:before {
    bottom: 28%;
    left: 50%;
  }  

}


@media (max-width: 870px) {  
  .login-container:before {  
    bottom: 65%;  
    right: auto;    
  }
}
.submitted-message {
  font-size: 170%;
  color: #f74781;
  text-align: center;
  font-weight: bold;
}