.password-input-container {
    position: relative;
}

.password-toggle-button {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 2px;
}

.password-paste-notification {
    position: absolute;
    background: #ffeb3b;
    color: #333;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 1000;
    border: 1px solid #ffc107;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.password-error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}