.formGroup {
    width: 100%;
    position: relative;
}

.formGroup label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    transition: all .2s ease-in-out;
}

.formGroup input:focus ~ label,
.formGroup input ~ label.yes {
    top: 0;
    left: 30px;
    font-size: 15px;
    color: #00209F;
    background: #fff;
    padding: 2px 10px;
    border: 1px solid #dee2e6;
    font-style: italic;
}


.formGroup input {
    border: 1px solid #dee2e6;
    background: #fff;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    padding-left: 18px;
}

.formGroup input.valid {
    border: 2px solid #4F8073;
}

.formGroup input.invalid {
    border: 2px solid #CB0020;
}

.formGroup input:focus {
    outline: unset;
    border: 2px solid #FFB749;
}


.formGroup #mdp ~ button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: unset;
    background: unset;
}

.formGroup #mdp ~ button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.formGroup #mdp ~ button svg {
    width: 35px;
    color: #797585;
}

#btnLogin {
    width: 100%;
    display: block;
    background: #45BEA4;
    color: #fff;
    border: unset;
    font-size: 22px;
    padding: .5rem 0 .6rem;
    border-radius: 5px;
    transition: background .1s ease-in-out;
}


#btnLogin:hover {
    background: #008394;
}

.loader {
    width: 120px;
    height: 20px;
    background: 
      linear-gradient(#FFB749 0 0) left -40px top 0/40px 20px,
      linear-gradient(#fff 0 0) center/100% 50%; 
    background-repeat: no-repeat;
    animation: l5 1s infinite linear;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

.background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00209fd0;
    z-index: 1;
}

  @keyframes l5 {
    100% {background-position: right -40px top 0,center}
  }
  