.forgot-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    
}
.forgot-text label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
    color: #1e1e1e;
}
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-left: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

input:checked + .slider {
    background-color: #00adee;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 20px;
}


input:checked + .slider:before {
    transform: translateX(20px);
}
.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

a, a:hover, a:focus {
    color: #2196f3;
    outline: none;
    text-decoration: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}






.wave-group {
  position: relative;
}

.wave-group .input {
  font-size: 16px;
  padding: 0 15px;
  display: block;
 
  border: none;
  border-bottom: 1px solid #515151;
  background: transparent;
  width: 100%;
}

.wave-group .input:focus {
    outline: none;
    padding: 0 15px;
    border: 1px solid #2196f357 !important;
}

.wave-group .label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  display: flex;
}

.wave-group .label-char {
  transition: 0.2s ease all;
  transition-delay: calc(var(--index) * .05s);
}

.wave-group .input:focus ~ label .label-char, .wave-group .input:valid ~ label .label-char {
    transform: translateY(-24px);
    font-size: 16px;
    color: #2196f3;
    background: white;
}
input:-webkit-autofill ~ .label .label-char{
    transform: translateY(-24px);
    font-size:16px;
    color:#2196f3;
    background:#fff;
}
.wave-group .bar {
  position: relative;
  display: block;
  width: 200px;
}

.wave-group .bar:before,.wave-group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}



input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #333 !important;
    caret-color: #333;
    transition: background-color 9999s ease-in-out 0s;
}
.loginbg .alert-danger {
    margin-bottom: 33px;
    padding: 11px 20px;
    font-size: 17px;
    color: red;
    background: #ffdbdb5c;
    text-align: center;
}

    .logowidth img {
    width: auto;
    height: 115px;
}

.password-wrapper{
    position: relative;
}

.password-wrapper input{
    padding-right: 45px;
}

.toggle-password{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #666;
    font-size: 18px;
}

.toggle-password:hover{
    color: #007bff;
}