.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-input {
    width: 100%;
    padding-right: 40px;
    box-sizing: border-box;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.hidden {
    display: none;
}

.strength-bar-container {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    margin-top: 8px;
    border-radius: 3px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text {
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.caps-warning {
    color: #ff9800;
    font-size: 12px;
    margin-top: 5px;
    font-weight: bold;
}

#submit_btn_wrapper {
    display: inline-block;
    width: 100%; 
}

/* button[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
} */

/* button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
} */

/* button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
} */

/* button[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    pointer-events: none;
} */

.shake {
    animation: shakeAnimate 0.4s ease-in-out;
    border: 2px solid #ff4d4d !important;
}

@keyframes shakeAnimate {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}