
.login-logo {
    padding: 20px 0px;
}

.login-card {
    float: right;
    width: 400px;
    height: auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 4%);
    margin-top: 40px;
}

.form-group {
  display: flex;
  flex-flow: column;
  margin-bottom: 1em;
}

label, input {
  transition: all 0.2s;
  touch-action: manipulation;
}

input {
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
}

input:focus {
  outline: 0;
  border-bottom: 1px solid #666;
}

label {
  text-transform: unset;
  /* letter-spacing: 0.05em; */
}

input:placeholder-shown + label {
  cursor: text;
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 2.125rem) scale(1.5);
  color: #B4B4B4;
  font-size: 12px;
}

::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}

input:focus::-webkit-input-placeholder {
  opacity: 1;
}

input:not(:placeholder-shown) + label,
input:focus + label {
  transform: translate(0, 0) scale(1);
  cursor: pointer;
}

.forgotpassword {
    padding: 10px 0px;
    margin-bottom: 30px;
}
.custm-loginbtn {
    background: #1E2E84 !important;
    border: #1E2E84 !important;
    padding: 10px;
}