.error-msg {
    position: absolute;
    right: 30px;
    transform: translateY(-50%);
    color: red;
    top: 22px;
    font-size: 13px;
    display: none;
}
.error-msg-ca {
    position: absolute;
    right: 30rem;
}

td{
    position: relative;
}

.strength-bar-container {
    margin-top: 10px;
    position: absolute;
    width: 100%;
    top: 60%;
}

.strength-bar {
    height: 8px;
    background: #e0e0e0;
    overflow: hidden;
}

.strength-bar-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
}

.strength-bar-fill.very-weak {
    width: 20%;
    background: #ff0000;
}

.strength-bar-fill.weak {
    width: 40%;
    background: #ff4500;
}

.strength-bar-fill.medium {
    width: 60%;
    background: #ffa500;
}

.strength-bar-fill.good {
    width: 80%;
    background: #90ee90;
}

.strength-bar-fill.strong {
    width: 100%;
    background: #00cc00;
}

.strength-text {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
}

.strength-text.very-weak {
    color: #ff0000;
}

.strength-text.weak {
    color: #ff4500;
}

.strength-text.medium {
    color: #ffa500;
}

.strength-text.good {
    color: #90ee90;
}

.strength-text.strong {
    color: #00cc00;
}