
@import 'common.css';


.password-requirements {
    display: none;
    margin-top: 8px;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.requirement-list li {
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: #c62828; /* RED for unmet */
}

.requirement-icon {
    margin-right: 10px;
    font-weight: bold;
    width: 20px;
    display: inline-block;
    text-align: center;
}

.requirement-icon.met {
    color: #2e7d32;
}

.password-match-status {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
    font-size: 14px;
    font-weight: 500;
}

.password-match-status.mismatch {
    background-color: #ffebee;
    color: #c62828;
    border-left: 3px solid #c62828;
}

.password-match-status.match {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 3px solid #2e7d32;
}


.show-password {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.show-password input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
    transform: scale(1.2);
}

.show-password label {
    margin: 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.registration-header {
    color: #27ae60;
}

.password-strength-meter {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    transition: width 0.3s, background-color 0.3s;
}