 .pwd-setup__container {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
        }

        .pwd-setup__header {
            text-align: center;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .pwd-setup__form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .pwd-setup__input {
            width: 100%;
            padding: 0.75rem;
            padding-right: 40px; /* Increased right padding for icon */
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            height: 45px; /* Fixed height for better alignment */
            transition: border-color 0.3s;
        }

        .pwd-setup__input:focus {
            outline: none;
            border-color: #4A90E2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
        }

        .pwd-setup__toggle-btn {
            position: absolute;
            right: 10px;
            top: 12px;  /* Adjusted fixed positioning */
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pwd-setup__toggle-btn i {
            font-size: 16px; /* Adjusted icon size */
            line-height: 1;
        }

        .pwd-setup__toggle-btn:focus {
            outline: none;
        }

        .pwd-setup__toggle-btn:hover {
            color: #333;
        }

        .pwd-setup__strength-meter {
            height: 4px;
            background-color: #eee;
            margin: 0.5rem 0;
            border-radius: 2px;
            overflow: hidden;
        }

        .pwd-setup__strength-fill {
            height: 100%;
            width: 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .pwd-setup__requirements {
            margin-top: 1rem;
            display: none;
        }

        .pwd-setup__requirement {
            display: flex;
            align-items: center;
            margin: 0.3rem 0;
            color: #666;
            font-size: 0.875rem;
        }

        .pwd-setup__requirement i {
            margin-right: 0.5rem;
            width: 16px;
        }

        .pwd-setup__requirement--valid {
            color: #2ECC71;
        }

        .pwd-setup__submit-btn {
            width: 100%;
            padding: 0.75rem;
            background-color: #4A90E2;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .pwd-setup__submit-btn:hover {
            background-color: #357ABD;
        }

        .pwd-setup__submit-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }