﻿.password-progress-container {
    display: flex;
    font-size: 18px;
    padding: 7px 7px;
    max-width: 420px;
}

.password-missing-requirements-container {
    display: flex;
    font-size: 18px;
    padding: 7px 7px;
    max-width: 420px;
}

.password-progress {
    width: 100%;
    height: 5px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.password-progress-bar {
    height: 100%;
    background-color: #007bff;
    width: 0%;
    transition: width 0.6s ease;
}

.password-progress-bar.danger {
    background-color: #ce1b03;
}

.password-progress-bar.success {
    background-color: #198754;
}

.missing-requirements-list {
    list-style-type: disc;
    padding-left: 20px;
    list-style-type: none;
}

.fa-xmark danger {
    color: #ce1b03;
}

.missing-requirement {
    display: flex;
}

.missing-requirement-text {
    margin-left: 10px;
    letter-spacing: 0.5px;
    font-size: 0.9em;
    color: var(--text-color) !important;
    font-size: 14px;
    font-weight: normal!important;
}

