.login-wrapper {
  width: 50%;
  min-width: 400px;
  margin-right: auto;
  background: white;
  padding: 2rem;
  display: flex;
  box-shadow: 0 0 24px rgba(22, 22, 44, 0.733);
}

.form-field {
  position: relative;
}

.form-group {
  margin: 0 !important;
  position: relative;
}

.formwrapper {
  background: white;
  width: 350px;
  box-shadow: 0 12px 24px rgba(22, 22, 44, 0.733);
  padding: 20px;
  border-radius: 12px;
}

.formwrapper-responsive {
  padding: 6px 8px;
  width: 580px;
  transition: all .3s ease-out;
}

.title {
  font-size: 1.7rem;
  font-weight: 500;
  border-bottom: 1px solid #dbe3ec;
  padding-bottom: 10px;
  margin: 0;
  transition: all .3s ease-out;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  padding-top: 10px;
  margin: 0;
  transition: all .3s ease-out;
}

label {
  font-size: 1.0em;
  margin-top: 10px;
  margin-bottom: 3px;
  display: block;
  font-weight: 400;
}

input,
textarea,
select {
  padding: 10px 13px;
  /* width: -webkit-fill-available; */
  border-radius: 2px;
  border: 1px solid #d4d9e3;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  transition: all .3s ease-out;
  font-size: .9em;
  outline-color: transparent;
  outline-style: none;
}

input[type="email"]::placeholder,
input[type="text"]::placeholder {
  color: #82a0db;
}

input[type="email"]:hover,
input[type="password"]:hover,
input[type="text"]:hover,
input[type="tel"]:hover,
select:hover,
textarea:hover {
  border-color: #5eb9d7;
  background: #d9f6ff;
}

input[type="submit"] {
  background: #4c4cff;
  color: white;
  border-radius: 4px;
  margin-top: 15px;
  font-weight: 500;
}

input[type="submit"]:hover {
  cursor: pointer;
  background: #2e2e8a;
  color: white;
}

.login-signup {
  text-align: center;
  font-weight: 300;
  font-size: 0.8em;
  margin-top: 10px;
  margin-bottom: 0px;

}

.login-signup a {
  font-weight: 500;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #4c4cff !important;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: #4c4cff !important;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
  border-right-color: #4c4cff !important;
}

.tooltip-inner {
  background-color: #fff !important;
  color: #4c4cff !important;
  border: 1px solid #4c4cff;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (max-width: 1000px) {
  .title {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  label {
    font-size: 0.9em;
  }

  input {
    padding: 7px 9px;
  }
}

@media (max-width: 768px) {
  .formwrapper-responsive {
    width: 100%;
  }

  .formwrapper {
    width: 100%;
    margin-left: 24px;
    margin-right: 24px;
  }

  .title {
    font-size: 1.3rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  label {
    font-size: 0.9em;
  }

  input {
    padding: 7px 9px;
  }
}