/*
  This CSS file is meant to be customized by deployments
  and is intentionally left empty. Any style that is added
  here should override the default styles in the application.
*/

/** Password Reset &  Password Change **/

.progress-bar-fill {
    height: 100%;
    background-color: #4CAF50;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/** Password Reset **/

/** Password Change **/
.password-policy-guide {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
    color: #464646 !important;
    line-height: 1.5 !important;
}
.password-policy-guide strong,
.password-policy-guide b {
    color: #696969;
}

.password-policy-guide > *:first-child {
    margin-bottom: 5px;;
}

.password-policy-guide > *:last-child {
    margin-left: auto;
}

.password-policy-guide a:link,
.password-policy-guide a:visited {
    color: #464646;
    text-decoration: none;
}

/* .password-policy-guide a b {
    color: #003057;
} */
.password-policy-guide a:hover b,
.password-policy-guide a:hover {
    color: black;
    text-shadow: 1px 1px #efefef;
}

.password-policy-guide a > b:after {
    font: normal normal normal 24px / 1 "Material Design Icons";
    font-size: 1rem;
    text-rendering: auto;
    vertical-align: middle;
    /* mdi-open-in-new */
    content: " \F03CC";
}

.invalid-feedback:not(.caps-on)
{
    justify-content: flex-end;
}

#pass_new1_warn,
#pass_new2_warn {
    color: var(--mdc-theme-error, #fd9090);
    width: 98%;
    display: none;
    margin: 0px;
    padding: 5px 0;
    font-size: 14px;
    align-items: flex-end;
    flex-direction: column;
    gap: 7px;
}

#submitBtn.mdc-button:disabled {
    pointer-events: auto !important;
    cursor: not-allowed;
}
#submitBtn[disabled]:hover {
    box-shadow: 0px 0px 15px 0px  var(--mdc-theme-error, #fd9090);
}

